1. 4ad7f7f distutils 2.7’s Extension does not support optional (#13865). by Éric Araujo · 14 years ago
  2. 59e7c8f Issue #9021: Add an introduction to the copy module. Doc changes suggested by Terry Reedy. by Senthil Kumaran · 14 years ago
  3. 607e31e Fix Issue #6005: Examples in the socket library documentation use sendall, by Senthil Kumaran · 14 years ago
  4. ebf691d Skip test_threading.test_reinit_tls_after_fork() on platforms where fork() by Charles-François Natali · 14 years ago
  5. c7fd523 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 14 years ago
  6. cec6a61 bltinmod is borrowed, so it shouldn't be decrefed by Benjamin Peterson · 14 years ago
  7. 2c8bf04 Issue #10881: Fix test_site failures with OS X framework builds. by Ned Deily · 14 years ago
  8. adb87e2 Issue 964437 Make IDLE help window non-modal. by Terry Jan Reedy · 14 years ago
  9. d76c1bf #13933 refine patch using 'new' builtin by Terry Jan Reedy · 14 years ago
  10. d15c5a8 Clarify note in BZ2File docs about lack of multi-stream support (issue #1625). by Nadeem Vawda · 14 years ago
  11. 922ae2c Closes #13944: fix capitalization of class name. by Georg Brandl · 14 years ago
  12. 25e70fd Issue #12142: Fixed reference cycle when importing ctypes by Meador Inge · 14 years ago
  13. acd51f9 Issue #1625: Document BZ2File's lack of support for multi-stream inputs. by Nadeem Vawda · 14 years ago
  14. 61c9534 Issue #13933: IDLE auto-complete did not work with some imported by Ned Deily · 14 years ago
  15. 60be6f8 Fix failing test on big-endian machines (issue #13806). by Antoine Pitrou · 14 years ago
  16. 709aa35 Issue #8184: Fix a potential file descriptor leak when a by Charles-François Natali · 14 years ago
  17. 4c79aec put returns on their own lines by Benjamin Peterson · 14 years ago
  18. 0013783 remove unused import by Benjamin Peterson · 14 years ago
  19. 22d2711 Issue #13861: Prevent test_apropos* test case failures in test_pydoc. by Ned Deily · 14 years ago
  20. fbc56fd Issue #13901: Prevent test_distutils failures on OS X with --enable-shared. by Ned Deily · 14 years ago
  21. 6dce7d6 Merge. by Charles-François Natali · 14 years ago
  22. fe6f9d0 Document absoluteness of sys.executable by Petri Lehtinen · 14 years ago
  23. e0e88b0 Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 14 years ago
  24. da6db4f Issue #1813: backport changeset that reverts a glibc workaround for the by Stefan Krah · 14 years ago
  25. 65de77e Clean-up docs for input() by Raymond Hettinger · 14 years ago
  26. 6d837a3 Add pure python equivalent code for reduce(). by Raymond Hettinger · 14 years ago
  27. c5f310c Clarify the note for UserList by Raymond Hettinger · 14 years ago
  28. 1d23199 Use validate SQL in the example (this was confusing to readers) by Raymond Hettinger · 14 years ago
  29. 81a55c0 Show the import in the sqlite3 example by Raymond Hettinger · 14 years ago
  30. 3c8807b merge. by Brian Curtin · 14 years ago
  31. b4bef30 merge from fb225c289bf0 by Brian Curtin · 14 years ago
  32. 0518f47 sqlite3: Handle strings with embedded zeros correctly by Petri Lehtinen · 14 years ago
  33. 6ab9813 Use xrange in the example by Raymond Hettinger · 14 years ago
  34. 9f55b63 fix whitespace by Raymond Hettinger · 14 years ago
  35. bdb7fe4 Add a usage note by Raymond Hettinger · 14 years ago
  36. 1d4ae48 whitespace3 by Terry Jan Reedy · 14 years ago
  37. b98000a #13506 Add '' to path for interactive interpreter by adding with_cwd parameter by Terry Jan Reedy · 14 years ago
  38. 1d8e6fd Fix #13900: resolve self-referential description of a parameter. by Georg Brandl · 14 years ago
  39. caa0f61 remove tests from really old regex module by Benjamin Peterson · 14 years ago
  40. 88c51e8 Issue #13806: The size check in audioop decompression functions was too strict and could reject valid compressed data. by Antoine Pitrou · 14 years ago
  41. 1abe6cd Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c functions in float round. by Mark Dickinson · 14 years ago
  42. 7a55684 Fix intermittent test_ssl failure. by Antoine Pitrou · 14 years ago
  43. 78028b0 note that get() is not affected by default_factory (closes #13887) by Benjamin Peterson · 14 years ago
  44. 374b4ea Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 14 years ago
  45. d358e05 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 14 years ago
  46. 64b2b6a Issue #13883: Document all platforms PYTHONCASEOK works on. by Brett Cannon · 14 years ago
  47. 0a15103 merge heads by Benjamin Peterson · 14 years ago
  48. dcd37e8 forgot to resolve this conflict... by Benjamin Peterson · 14 years ago
  49. e9401a0 #13852: some small doc fixes. by Georg Brandl · 14 years ago
  50. af90a40 kill extra word by Benjamin Peterson · 14 years ago
  51. bcd6f39 say bitwise (because I have no idea what a bit-string is) by Benjamin Peterson · 14 years ago
  52. 6f25d75 Remove debug output, fix assert (hopefully) and exercise signedness issues a bit more. by Antoine Pitrou · 14 years ago
  53. b744cef Fix temporary debug output (so, time_t is 8 bytes on some Windows builds) by Antoine Pitrou · 14 years ago
  54. 11cc480 Temporary debug for Windows buildbots. by Antoine Pitrou · 14 years ago
  55. 0e5fd59 Make guard more dynamic (apparently the size of a filesystem timestamp may vary under Windows). by Antoine Pitrou · 14 years ago
  56. 6e16f53 Skip test failure under OpenIndiana by Antoine Pitrou · 14 years ago
  57. e3668e9 Make test work under 32-bit systems, and when invoked through Lib/test/regrtest.py by Antoine Pitrou · 14 years ago
  58. a1f948b Issue #12501: merge the discordant NEWS entries. by Florent Xicluna · 14 years ago
  59. d1c818a Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 14 years ago
  60. dfdc46f #13816: fix two minor style issues. Thanks to Justin Wehnes for the patch. by Georg Brandl · 14 years ago
  61. 30b13ee Fixes #4686. Reverts redundant picklability code from r74544. by Łukasz Langa · 14 years ago
  62. 8fc732f Issue #12922: fix the TextIOBase documentation to include a description of seek() and tell() methods. by Antoine Pitrou · 14 years ago
  63. 51ab351 Move a space. by Ezio Melotti · 14 years ago
  64. 2d71e5c fix typo; thanks to Justin Watt from docs@ by Sandro Tosi · 14 years ago
  65. 27a4918 Fix conf.py for Sphinx 1.0. by Georg Brandl · 14 years ago
  66. 0bb1251 whitespace by Terry Jan Reedy · 14 years ago
  67. 96a0a46 Issue13820 as and with really became keywords in 2.6. by Terry Jan Reedy · 14 years ago
  68. b05f91d NEWS entry for Issue6631 by Senthil Kumaran · 14 years ago
  69. 58c6062 Fix Issue6631 - Disallow relative files paths in urllib*.open() by Senthil Kumaran · 14 years ago
  70. 631c258 Fixes #13760: picklability of ConfigParser exceptions by Łukasz Langa · 14 years ago
  71. 6d102f1 Closes #13807: Now checks for sys.stderr being there before writing to it. by Vinay Sajip · 14 years ago
  72. cb21227 Issue #13605: more meaningful example + fixes by Sandro Tosi · 14 years ago
  73. 10f047d Issue #13605: add documentation for nargs=argparse.REMAINDER by Sandro Tosi · 14 years ago
  74. d53abd3 Issue #11948: clarify modules search path by Sandro Tosi · 14 years ago
  75. da747c3 Issue #2134: Clarify token.OP handling rationale in tokenize documentation. by Meador Inge · 14 years ago
  76. d7664de Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects. by Nadeem Vawda · 14 years ago
  77. e09bc1e Revert part of 13f56cd8dec1 (issue #1785) to avoid breaking getmembers() with unbound methods. by Antoine Pitrou · 14 years ago
  78. a8f75da Yet another emergency fix for #13803 bootstrap issue: Under Solaris, distutils doesn't include bitness in the directory name by Jesus Cea · 14 years ago
  79. f830aa5 Emergency fix for #13803 bootstrap issue: Under Solaris, distutils doesn't include bitness in the directory name by Jesus Cea · 14 years ago
  80. 4a8ba19 Closes #13803: Under Solaris, distutils doesn't include bitness in the directory name by Jesus Cea · 14 years ago
  81. 25e76bd file.next() doc refers to itself by Sandro Tosi · 14 years ago
  82. 03c6110 revert part of cefe4f38fa0e, as agreed with Éric by Sandro Tosi · 14 years ago
  83. 3b6a314 Issue #13589: Fix some serialization primitives in the aifc module. by Antoine Pitrou · 14 years ago
  84. 23fbd8c Berkeley DB: Erratic behaviour of "DBEnv->rep_elect()" because a typo by Jesus Cea · 14 years ago
  85. 2ab4a91 Berkeley DB: Erratic behaviour of "DBEnv->rep_elect()" because a typo by Jesus Cea · 14 years ago
  86. 6008a8b Issue: #12409: remove obsolete susp-entries by Sandro Tosi · 14 years ago
  87. 8eab1fd #13715: fix typo in unicodedata doc. Patch by Eli Collins. by Ezio Melotti · 14 years ago
  88. 055d70d #13695: fix a couple of typos in the doc. by Ezio Melotti · 14 years ago
  89. 465b58e explain why we need this grammar file (closes #13766) by Benjamin Peterson · 14 years ago
  90. 8ef4a70 #13039 allow proper deletion of '>>> ' in IDLE editor windows. by Terry Jan Reedy · 14 years ago
  91. bde7eac fix typo; thanks to Jan Heidbrink from docs@ by Sandro Tosi · 14 years ago
  92. 7d77c6f remove 'Documenting Python' and its references, it's now on devguide by Sandro Tosi · 14 years ago
  93. c86bb00 Fix label names. by Georg Brandl · 14 years ago
  94. 9a56068 how could I have missed :cmember: in import.rst? by Sandro Tosi · 14 years ago
  95. a76bb03 None is not a keyword, link file.next() to functions.html#next by Sandro Tosi · 14 years ago
  96. d6e87f4 update part of sphinxext by Sandro Tosi · 14 years ago
  97. 98ed08f update to new C roles and directives by Sandro Tosi · 14 years ago
  98. bbd41d0 update Sphinx reference from 0.6.7 to 1.0.7 by Sandro Tosi · 14 years ago
  99. 150122a #11633 about buffering of print by Terry Jan Reedy · 14 years ago
  100. 4ba76b6 closes #13730 by Terry Jan Reedy · 14 years ago