Skip to content

Commit

Permalink
Fixed #17873 -- Removed stale code from translation utilities that sh…
Browse files Browse the repository at this point in the history
…ould have been removed a while ago. Thanks, Aymeric Augustin.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17684 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jezdez committed Mar 12, 2012
1 parent b2dcec2 commit 2f52013
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions django/utils/translation/__init__.py
Expand Up @@ -14,7 +14,6 @@
'get_language', 'get_language_from_request', 'get_language', 'get_language_from_request',
'get_language_info', 'get_language_bidi', 'get_language_info', 'get_language_bidi',
'check_for_language', 'to_locale', 'templatize', 'string_concat', 'check_for_language', 'to_locale', 'templatize', 'string_concat',
'get_date_formats', 'get_partial_date_formats',
'gettext', 'gettext_lazy', 'gettext_noop', 'gettext', 'gettext_lazy', 'gettext_noop',
'ugettext', 'ugettext_lazy', 'ugettext_noop', 'ugettext', 'ugettext_lazy', 'ugettext_noop',
'ngettext', 'ngettext_lazy', 'ngettext', 'ngettext_lazy',
Expand Down Expand Up @@ -132,12 +131,6 @@ def get_language():
def get_language_bidi(): def get_language_bidi():
return _trans.get_language_bidi() return _trans.get_language_bidi()


def get_date_formats():
return _trans.get_date_formats()

def get_partial_date_formats():
return _trans.get_partial_date_formats()

def check_for_language(lang_code): def check_for_language(lang_code):
return _trans.check_for_language(lang_code) return _trans.check_for_language(lang_code)


Expand Down

0 comments on commit 2f52013

Please sign in to comment.