1. afd1e6d bpo-36239: Skip comments in gettext infos (GH-12255) by Julien Palard · 5 years ago
  2. 637a33b bpo-2504: Add pgettext() and variants to gettext. (GH-7253) by Cheryl Sabella · 6 years ago
  3. fec35c9 bpo-33710: Deprecate l*gettext() and related functions in the gettext module. (GH-10139) by Serhiy Storchaka · 6 years ago
  4. 8110837 bpo-30152: Reduce the number of imports for argparse. (#1269) by Serhiy Storchaka · 7 years ago
  5. 26cb465 bpo-29755: Fixed the lgettext() family of functions in the gettext module. (#2266) by Serhiy Storchaka · 7 years ago
  6. d6debb2 bpo-29919: Remove unused imports found by pyflakes (#137) by Victor Stinner · 7 years ago
  7. f659598 bpo-28692: Deprecate using non-integer value for selecting a plural form in gettext. (#507) by Serhiy Storchaka · 7 years ago
  8. 5ae6c77 Issue #28563: Make plural form selection more lenient and accepting by Serhiy Storchaka · 8 years ago
  9. 5ca92ab Issue #28563: Make plural form selection more lenient and accepting by Serhiy Storchaka · 8 years ago
  10. 60ac989 Issue #28563: Make plural form selection more lenient and accepting by Serhiy Storchaka · 8 years ago
  11. eb20fca Issue #28563: Fixed possible DoS and arbitrary code execution when handle by Serhiy Storchaka · 8 years ago
  12. 1c3fdd9 Issue #28563: Fixed possible DoS and arbitrary code execution when handle by Serhiy Storchaka · 8 years ago
  13. 07bcf05 Issue #28563: Fixed possible DoS and arbitrary code execution when handle by Serhiy Storchaka · 8 years ago
  14. 8b963c5 #17898: reset k and v so that the loop doesn't use an old value by Andrew Kuchling · 9 years ago
  15. 770b08e #23883: add names missing from __all__ (l*gettext, bind_textdomain_codeset) by Andrew Kuchling · 9 years ago
  16. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  17. 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
  18. 19ddaf6 Merge from 3.4 by Andrew Kuchling · 9 years ago
  19. 467a546 Merge from 3.4 by Andrew Kuchling · 9 years ago
  20. be8d06f Issue #18216: gettext now raises an error when a .mo file has an unsupported major version number. Patch by Aaron Hill. by Antoine Pitrou · 10 years ago
  21. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  22. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  23. bc78e37 update comment by Benjamin Peterson · 14 years ago
  24. 31e8720 kill some function imports by Benjamin Peterson · 14 years ago
  25. a91dd1e use native tenary condition by Benjamin Peterson · 14 years ago
  26. 298be51 Merged revisions 85223 via svnmerge from by Éric Araujo · 14 years ago
  27. 6108bf5 Fix interaction of custom translation classes and caching (#9042) by Éric Araujo · 14 years ago
  28. fa0d703 Merged revisions 72506,72525-72526,72551,72558,72616,72654-72655,72689,72745,72750,72802,72812,72822,72824,72826-72827,72833,72876,72890,72923,72946,73026,73042,73045,73047,73065,73068-73069 via svnmerge from by Benjamin Peterson · 15 years ago
  29. cd86925 Use true booleans. by Georg Brandl · 15 years ago
  30. bded4d3 Make gettext Unicode interface consistent and clean up the docs. by Georg Brandl · 16 years ago
  31. 801844d #2512 implement the 3.0 gettext API by Benjamin Peterson · 16 years ago
  32. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  33. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  34. 6ae5d7f Fixed gettext module for Windows. The metadata lines always end in \n and not in os.linesep by Christian Heimes · 17 years ago
  35. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  36. 9600f93 Make gettext work with strict str/bytes. by Guido van Rossum · 17 years ago
  37. 652f446 Fixes for str/uni/bytes for gettext.py. test_gettext.py passes. by Guido van Rossum · 17 years ago
  38. 68937b4 Change some uses of cStringIO.StringIO to io.StringIO. by Guido van Rossum · 17 years ago
  39. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  40. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  41. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  42. 602b9ba Patch #1349274: gettext.install() now optionally installs additional by Georg Brandl · 18 years ago
  43. a617271 Use cStringIO where available. by Raymond Hettinger · 20 years ago
  44. 7bd33c5 This change implements the following gettext features, as by Gustavo Niemeyer · 20 years ago
  45. bac788a Replace str.find()!=1 with the more readable "in" operator. by Raymond Hettinger · 20 years ago
  46. b8c7876 GNUTranslations._parse(): Initialize local variable k so that if the by Barry Warsaw · 21 years ago
  47. 7de63f5 GNUTranslations._parse(): Fix SF bug #658233, where continuation lines by Barry Warsaw · 21 years ago
  48. c4acc2b GNUTranslations: by Barry Warsaw · 21 years ago
  49. 6008cbd NullTranslations.__init__(): Back out of setting the default charset by Barry Warsaw · 21 years ago
  50. a1ce93f From http://mail.python.org/pipermail/i18n-sig/2003-April/001557.html by Barry Warsaw · 21 years ago
  51. a57dccd Patch #700839: Fix bugs in the plural handling. by Martin v. Löwis · 21 years ago
  52. d899605 Patch #633547: Support plural forms. Do TODOs in test suite. by Martin v. Löwis · 22 years ago
  53. 09707e3 Patch by Tim to shut up the compiler's DeprecationWarnings on the by Barry Warsaw · 22 years ago
  54. 094662a Replace boolean test with is None by Raymond Hettinger · 22 years ago
  55. a55ffae Add a per-message fallback mechanism for translations. by Martin v. Löwis · 23 years ago
  56. 1be6419 Add fallback argument to translation(). Request fallbacks on install. by Martin v. Löwis · 23 years ago
  57. 2dd4276 added a few more __all__ lists fixed typo in ihooks docstring by Skip Montanaro · 23 years ago
  58. 07e99cb Whitespace normalization. by Tim Peters · 23 years ago
  59. 75f8101 find(): Application of (slightly modified) SF patch #101928 by Ulf by Barry Warsaw · 24 years ago
  60. 293b03f translation(): Minor optimization patch which avoids instantiating the by Barry Warsaw · 24 years ago
  61. c638791 Repaired comment. by Tim Peters · 24 years ago
  62. 9a2d9d7 GNUTranslations._parse(): Fix portability problems on 64-bit machines by Barry Warsaw · 24 years ago
  63. b76a55c GNUTranslations.BE_MAGIC: don't be so clever in calculating this from by Barry Warsaw · 24 years ago
  64. 33d8d70 Finalize this module for Python 2.0 based on feedback and input from by Barry Warsaw · 24 years ago
  65. fa488ec _expand_lang(), _find(): Added support for unaliasing and expanded the by Barry Warsaw · 24 years ago
  66. 84314b7 Group consensus is that supporting alternative locale categories is by Barry Warsaw · 24 years ago
  67. 95be23d Initial revision of gettext support for Python. This will undergo some changes. by Barry Warsaw · 24 years ago