1. 226f544 Improve docstrings for isnan, isinf and isfinite. by Mark Dickinson · 14 years ago
  2. 8e0c996 Issue #9165: Add math.isfinite and cmath.isfinite. by Mark Dickinson · 14 years ago
  3. e40ee50 #9184: fix default value for "buffering" param of open(). by Georg Brandl · 14 years ago
  4. d4fcdb1 Issue #9189: Allow users to set $CFLAGS, $CPPFLAGS, and $LDFLAGS when running by Jeffrey Yasskin · 14 years ago
  5. 74e4561 Re-flow several long lines from #1578269. by Brian Curtin · 14 years ago
  6. d40e6f7 Implement #1578269. Patch by Jason R. Coombs. by Brian Curtin · 14 years ago
  7. 9527afd Fix typo in a comment in mathmodule.c. by Ezio Melotti · 14 years ago
  8. 73ca440 Issue #5288: Eliminated round-trips between timdelta and int offsets by Alexander Belopolsky · 14 years ago
  9. de73c45 don't ignore exceptions from PyObject_IsTrue by Benjamin Peterson · 14 years ago
  10. be64d95 Issue #9186: log1p(-1.0) should raise ValueError, not OverflowError. by Mark Dickinson · 14 years ago
  11. 9c91eb8 Minor refactoring in lgamma code, for clarity. by Mark Dickinson · 14 years ago
  12. a11d8c0 Issue #9000: datetime.timezone objects now have eval-friendly repr. by Alexander Belopolsky · 14 years ago
  13. 6f493b7 Indentation and PEP 7 fixes. by Mark Dickinson · 14 years ago
  14. 6c3bcb7 Post-detabification cleanup. by Mark Dickinson · 14 years ago
  15. feb3b75 Issue #9130: Validate ellipsis tokens in relative imports. by Mark Dickinson · 14 years ago
  16. 2cc8a5e Issue #9130: Fix validation of relative imports in parser module. by Mark Dickinson · 14 years ago
  17. 2bd61a9 Issue #9128: Fix validation of class decorators in parser module. by Mark Dickinson · 14 years ago
  18. 33777d4 Issue #9152: Removed dead code in datetime module by Alexander Belopolsky · 14 years ago
  19. cc588c1 Fix refleak in Modules/audioop.c. by Mark Dickinson · 14 years ago
  20. bc5c54b Merged revisions 82492 via svnmerge from by Victor Stinner · 14 years ago
  21. 2f194b9 Merged revisions 82466 via svnmerge from by Alexander Belopolsky · 14 years ago
  22. 6d02d9c Style/consistency nit: make math_floor and math_ceil code look the same. by Mark Dickinson · 14 years ago
  23. f751bc9 fix lookup of __ceil__ by Benjamin Peterson · 14 years ago
  24. b012589 account for different ref counting semantics of _PyObject_LookupSpecial by Benjamin Peterson · 14 years ago
  25. 8bb9cde correctly lookup __trunc__ and __floor__ by Benjamin Peterson · 14 years ago
  26. 311d2a9 Added missing white space by Alexander Belopolsky · 14 years ago
  27. e0edb8b Merged revisions 79894-79895,80098,80120 via svnmerge from by Benjamin Peterson · 14 years ago
  28. d7c3ed5 Merged revisions 80605-80609,80642-80646,80651-80652,80674,80684-80686,80748,80852,80854,80870,80872-80873,80907,80915-80916,80951-80952,80976-80977,80985,81038-81040,81042,81053,81070,81104-81105,81114,81125,81245,81285,81402,81463,81516,81562-81563,81567,81593,81635,81680-81681,81684,81801,81888,81931-81933,81939-81942,81963,81984,81991,82120,82188,82264-82267 via svnmerge from by Benjamin Peterson · 14 years ago
  29. d19052c Issue #9089: Remove references to intobject.c and intobject.h from comments. by Mark Dickinson · 14 years ago
  30. 7adeed3 Merged revisions 82150 via svnmerge from by Ronald Oussoren · 14 years ago
  31. fdb0acc Merged revisions 82221 via svnmerge from by Mark Dickinson · 14 years ago
  32. 6186bfb Merged revisions 82210 via svnmerge from by Antoine Pitrou · 14 years ago
  33. 25e8ec4 Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use by Victor Stinner · 14 years ago
  34. 8bae4ec Issue #8682: The ssl module now temporary increments the reference count of by Antoine Pitrou · 14 years ago
  35. 1b7046b Issue #9051: Instances of timezone class can now be pickled. by Alexander Belopolsky · 14 years ago
  36. b00697e Merged revisions 82126-82127 via svnmerge from by Thomas Heller · 14 years ago
  37. 75f94c2 Issue #9005: Prevent utctimetuple() from producing year 0 or year 10,000. by Alexander Belopolsky · 14 years ago
  38. 6ed7ac4 Revert r82089. Commit was intended for a branch. by Jean-Paul Calderone · 14 years ago
  39. 867c435 merge forward from the python 2.x branch by Jean-Paul Calderone · 14 years ago
  40. f568218 Issue #6641: Original commit for this issue, r82053, introduced a by Alexander Belopolsky · 14 years ago
  41. 3fe3e12 Fixed a typo in a comment. by Alexander Belopolsky · 14 years ago
  42. ca94f55 Issue #6641: The datetime.strptime method now supports the %z directive. by Alexander Belopolsky · 14 years ago
  43. 684760a Merged revisions 82047 via svnmerge from by Senthil Kumaran · 14 years ago
  44. d95a586 Issue #9012: "Separate compilation of time and datetime modules." by Alexander Belopolsky · 14 years ago
  45. b39a0c2 Issue 5094: minor documentation fixes by Alexander Belopolsky · 14 years ago
  46. 4e749a1 Issue #5094: The ``datetime`` module now has a simple concrete class by Alexander Belopolsky · 14 years ago
  47. 06e49dd Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z" by Victor Stinner · 14 years ago
  48. bcdf9da Merged revisions 81967 via svnmerge from by Mark Dickinson · 14 years ago
  49. c6f1396 Remove unnecessary brackets from docstring optional arguments. by Mark Dickinson · 14 years ago
  50. 0bd003a Issue #8973: Expanded Struct.__doc__. by Alexander Belopolsky · 14 years ago
  51. fdb99f1 More struct module docs and docstring tweaks. by Mark Dickinson · 14 years ago
  52. aacfa95 Issue #8973: Improve struct module docstrings. by Mark Dickinson · 14 years ago
  53. d80a8ee Remove accidental (yet-to-be-reviewed) docstring changes included in r81947. by Mark Dickinson · 14 years ago
  54. 4b80ef5 Issue #8973: Add __all__ to struct module, so that help(struct) correctly by Mark Dickinson · 14 years ago
  55. 0681785 Remove unused variable. by Mark Dickinson · 14 years ago
  56. bfd5761 Issue #8981: Remove _struct.__version__. by Mark Dickinson · 14 years ago
  57. 19e65a3 readline: use PyUnicode_FSConverter() to parse filenames by Victor Stinner · 14 years ago
  58. 9e19ca4 locale.bindtextdomain(): use PyUnicode_FSConverter() to parse the filename by Victor Stinner · 14 years ago
  59. da0eca4 Issue #8966: If a ctypes structure field is an array of c_char, convert its by Victor Stinner · 14 years ago
  60. b72e686 Fix more undefined-behaviour inducing overflow checks in struct module. by Mark Dickinson · 14 years ago
  61. eac0e68 Fix an incorrect return type. by Mark Dickinson · 14 years ago
  62. ab4096f Avoid possible undefined behaviour from signed overflow. by Mark Dickinson · 14 years ago
  63. 177e853 Issue #3129: Trailing digits in format string are no longer ignored. by Alexander Belopolsky · 14 years ago
  64. bfd73fa Merged revisions 81889 via svnmerge from by Ezio Melotti · 14 years ago
  65. d118856 Merged revisions 81860 via svnmerge from by Antoine Pitrou · 14 years ago
  66. 3dcb5ac Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing format by Victor Stinner · 14 years ago
  67. 7eeb5b5 Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# by Victor Stinner · 14 years ago
  68. fa68a61 Fix naming inconsistency. by Mark Dickinson · 14 years ago
  69. 69f3fd0 Merged revisions 81756 via svnmerge from by Alexander Belopolsky · 14 years ago
  70. ec78d0a Merged revisions 81692 via svnmerge from by Martin v. Löwis · 14 years ago
  71. deda8cb Issue8810: Clearing up docstring for tzinfo.utcoffset. by Sean Reifscheider · 14 years ago
  72. d35251d #8845: expose sqlite3 inTransaction as RO in_transaction Connection attribute. by R. David Murray · 14 years ago
  73. 1790bc4 Issue #1289118: datetime.timedelta objects can now be multiplied by float by Alexander Belopolsky · 14 years ago
  74. 57bd2ba Merged revisions 81602 via svnmerge from by Mark Dickinson · 14 years ago
  75. f03a616 Merged revisions 81566 via svnmerge from by Alexander Belopolsky · 14 years ago
  76. b521877 Issue #4870: Add an `options` attribute to SSL contexts, as well as by Antoine Pitrou · 14 years ago
  77. 9ca9c25 Issue #8589: Decode PYTHONWARNINGS environment variable with the file system by Victor Stinner · 14 years ago
  78. 8699950 Issue #6697: Check that _PyUnicode_AsString() result is not NULL in _sqlite by Victor Stinner · 14 years ago
  79. f6c5783 Issue #6697: Check that _PyUnicode_AsString() result is not NULL in textio.c by Victor Stinner · 14 years ago
  80. ea7b748 Fix test_capi in !pydebug mode, where my original attempt segfaulted without by Jeffrey Yasskin · 14 years ago
  81. 6baded4 Issue #6697: Fix a crash if code of "python -c code" contains surrogates by Victor Stinner · 14 years ago
  82. 9d74b42 Merged revisions 81241 via svnmerge from by Antoine Pitrou · 14 years ago
  83. f9faaad Issue #8477: ssl.RAND_egd() supports str with surrogates and bytes for the path by Victor Stinner · 14 years ago
  84. 3800e1e Issue #8477: _ssl._test_decode_cert() supports str with surrogates and bytes by Victor Stinner · 14 years ago
  85. 65ec8ae Fix (hopefully) the remaining test_ssl buildbot failures by Antoine Pitrou · 14 years ago
  86. 152efa2 Issue #8550: Add first class `SSLContext` objects to the ssl module. by Antoine Pitrou · 14 years ago
  87. 26486ea Recorded merge of revisions 81213 via svnmerge from by Victor Stinner · 14 years ago
  88. 0a589c9 Remove unused variable, and fix a compilation warning on Windows. by Amaury Forgeot d'Arc · 14 years ago
  89. 4c8a9a2 Issue #8692: Improve performance of math.factorial: by Mark Dickinson · 14 years ago
  90. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
  91. a45598a posix_listdir(), posix_readlink(): avoid temporary PyBytes object by Victor Stinner · 14 years ago
  92. 8e0bdfd Make PyErr_Occurred return NULL if there is no current thread. Previously it by Jeffrey Yasskin · 14 years ago
  93. 525807b Merged revisions 81115 via svnmerge from by Antoine Pitrou · 14 years ago
  94. 53b2166 Merged revisions 81098 via svnmerge from by Antoine Pitrou · 14 years ago
  95. e047cfa Issue #8677: Make curses module PY_SSIZE_T_CLEAN. by Mark Dickinson · 14 years ago
  96. 81fece2 Issue #8657: Make the audioop module PY_SSIZE_T_CLEAN. by Mark Dickinson · 14 years ago
  97. 393b97a Merged revisions 81079 via svnmerge from by Mark Dickinson · 14 years ago
  98. 2b14676 Merged revisions 81073 via svnmerge from by Andrew M. Kuchling · 14 years ago
  99. d6d058f Merged revisions 81072 via svnmerge from by Andrew M. Kuchling · 14 years ago
  100. abc79cd Merged revisions 81049 via svnmerge from by Andrew M. Kuchling · 14 years ago