1. 08350fb #18839: document that sys.exit() will not accept a non-integer numeric value as exit status. by Ezio Melotti · 11 years ago
  2. a9885e9 Issue #13461: Fix a crash in the TextIOWrapper.tell method and in the "replace" by Serhiy Storchaka · 11 years ago
  3. f48a67b Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. by Antoine Pitrou · 11 years ago
  4. e822b03 Issue #15866: The xmlcharrefreplace error handler no more produces two XML by Serhiy Storchaka · 11 years ago
  5. fe2e839 Fix reference leaks introduced by the patch for issue #5308. by Serhiy Storchaka · 11 years ago
  6. f7c8584 #18424: PEP8ify the tense of the sum docstring. by R David Murray · 11 years ago
  7. 7e9cec0 Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn. by Antoine Pitrou · 11 years ago
  8. 022db59 Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). by Antoine Pitrou · 12 years ago
  9. 94bf697 #17178: update any()/all() docstrings to document their behavior with empty iterables. Patch by Ankur Ankan. by Ezio Melotti · 12 years ago
  10. 34fe1b7 Issue #5308: Raise ValueError when marshalling too large object (a sequence by Serhiy Storchaka · 12 years ago
  11. 6b78bff remove unnecessary clearing of list by Benjamin Peterson · 12 years ago
  12. 1f7df8f merge heads by Benjamin Peterson · 12 years ago
  13. b25d611 bring Python into 2013 by Benjamin Peterson · 12 years ago
  14. 9fade76 Issue #13863: fix incorrect .pyc timestamps on Windows / NTFS (apparently due to buggy fstat) by Mark Dickinson · 12 years ago
  15. 25a4861 Make PyAST_obj2mod C89 compliant. (Follow-up commit from asdl_c.py.) by Trent Nelson · 12 years ago
  16. 7ddd9c2 Closes #16588: Silence unused-but-set warnings in Python/thread_pthread.h by Jesus Cea · 12 years ago
  17. b1cc6aa Issue #9011: AST creation no longer modifies CST for negated numeric literals. by Mark Dickinson · 12 years ago
  18. ec6486d #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  19. db5947f #16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen. by Ezio Melotti · 12 years ago
  20. b271b3e Issue #15001: fix segfault on "del sys.modules['__main__']" by Hynek Schlawack · 12 years ago
  21. c18cc0e #5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds. by Ezio Melotti · 12 years ago
  22. b48c028 Issue #6074: Restore the long-broken support for running with read-only source files on Windows by Nick Coghlan · 12 years ago
  23. ad4b000 Issue #14783: Backport changes from 3.2. by Chris Jerdonek · 12 years ago
  24. dfaf90d Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to decref 'k' in too many error cases. by Christian Heimes · 12 years ago
  25. 65a0141 Partly revert ad3824a90261 and add comment about reference ownership by Christian Heimes · 12 years ago
  26. d8edcb6 Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
  27. 8c1bce0 Closed reference leak of variable 'k' in function ste_new which wasn't decrefed in error cases by Christian Heimes · 12 years ago
  28. e299cae Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. by Antoine Pitrou · 12 years ago
  29. 58098a7 Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  30. a8857af Issue #15741: Fix potential NULL dereference. Found by Coverity. by Stefan Krah · 12 years ago
  31. c5bef75 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  32. 92636bf - Issue #15647: Make isdir static for windows and posix by Matthias Klose · 12 years ago
  33. dee8af2 Fix whitespace by Raymond Hettinger · 12 years ago
  34. 59488d2 Closes #9254: backport __import__ docstring/doc mentions of importlib. by R David Murray · 12 years ago
  35. 0e3755e remove unused variable by Meador Inge · 12 years ago
  36. b8a5690 Issue #15368: fixing variable typo. by Meador Inge · 12 years ago
  37. 6642d1f Issue #15368: make bytecode generation deterministic. by Meador Inge · 12 years ago
  38. ed11a5d Issue #8767: Restore building with --disable-unicode. by Martin v. Löwis · 12 years ago
  39. 284fa08 Issue #14761: Fix potential leak on an error case in the import machinery. by Antoine Pitrou · 12 years ago
  40. a72aa84 Fix compiler warning related to issue #14331. harmless. by Gregory P. Smith · 12 years ago
  41. 7c0b44e move outside WITH_THREAD conditional by Benjamin Peterson · 12 years ago
  42. 6688eb5 take linkage def outside of WITH_THREAD conditional (closes #14569) by Benjamin Peterson · 12 years ago
  43. b9348e7 fix parse_syntax_error to clean up its resources by Benjamin Peterson · 13 years ago
  44. 50b6778 Issue #10538. Put a reference to the source object in the Py_buffer when by Kristján Valur Jónsson · 13 years ago
  45. 219a050 this should technicaly be identifier by Benjamin Peterson · 13 years ago
  46. e90cdaa check for NULL by Benjamin Peterson · 13 years ago
  47. eff19a1 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 13 years ago
  48. fcdf04b Fixes Issue #14331: Use significantly less stack space when importing modules by by Gregory P. Smith · 13 years ago
  49. 3cef2a9 - rename configure.in to configure.ac by Matthias Klose · 13 years ago
  50. 0e17dfb Test in 6c218b9c5c4c was inadvertently converted from #ifdef to #if. Now #ifdef again. by Jason R. Coombs · 13 years ago
  51. 0737b72 Fix indentation by Jason R. Coombs · 13 years ago
  52. fa93cf8 Extracted Windows directory detection from NullImporter.__init__. This greatly simplifies the code and fixes issue6727. by Jason R. Coombs · 13 years ago
  53. 925ff74 Moved directory detection into an isdir function by Jason R. Coombs · 13 years ago
  54. cc3fa88 Fix crash at startup with -W options. by Antoine Pitrou · 13 years ago
  55. 9d7601f merge 2.6 by Benjamin Peterson · 13 years ago
  56. 26da920 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 13 years ago
  57. aee9dfb merge 2.6 with hash randomization fix by Benjamin Peterson · 13 years ago
  58. 1e13eb0 - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED by Barry Warsaw · 13 years ago
  59. fe6f9d0 Document absoluteness of sys.executable by Petri Lehtinen · 13 years ago
  60. 6f25d75 Remove debug output, fix assert (hopefully) and exercise signedness issues a bit more. by Antoine Pitrou · 13 years ago
  61. b744cef Fix temporary debug output (so, time_t is 8 bytes on some Windows builds) by Antoine Pitrou · 13 years ago
  62. 11cc480 Temporary debug for Windows buildbots. by Antoine Pitrou · 13 years ago
  63. 0e5fd59 Make guard more dynamic (apparently the size of a filesystem timestamp may vary under Windows). by Antoine Pitrou · 13 years ago
  64. 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 · 13 years ago
  65. 5f8d606 add another year to glorious PSF IP by Benjamin Peterson · 13 years ago
  66. 4bf21e2 Issue #13546: Fixed an overflow issue that could crash the intepreter when by Amaury Forgeot d'Arc · 13 years ago
  67. a5ae1f0 remove py3k warning for callable by Benjamin Peterson · 13 years ago
  68. 0c0d756 don't let a tuple msg be interpreted as arguments to AssertionError (closes #13268) by Benjamin Peterson · 13 years ago
  69. 4618075 Merge. by Charles-François Natali · 13 years ago
  70. 1f3ff7b Issue #13156: revert changeset f6feed6ec3f9, which was only relevant for native by Charles-François Natali · 13 years ago
  71. 63c22fa Issue #7732: Fix a crash on importing a module if a directory has the same name by Victor Stinner · 13 years ago
  72. ed36c06 Fix the import machinery if there is an error on sys.path or sys.meta_path by Victor Stinner · 13 years ago
  73. 871a0fb Remove unused variable if Python is build without threads by Victor Stinner · 13 years ago
  74. 4cfae02 Issue #1813: Fix codec lookup and setting/getting locales under Turkish locales. by Antoine Pitrou · 13 years ago
  75. 5eed306 allow None identifiers by Benjamin Peterson · 13 years ago
  76. 7782024 verify the types of AST strings and identifiers (closes #12609 and #12610) by Benjamin Peterson · 13 years ago
  77. 39540a0 Improve docstring for divmod() by Raymond Hettinger · 13 years ago
  78. c3349cd port 8d05f697acd4 (#11627) by Benjamin Peterson · 13 years ago
  79. ba8b3a2 Close #12501: Adjust callable() warning: callable() is only not supported in by Victor Stinner · 13 years ago
  80. 4833c98 start out this branch always with filename NULL by Benjamin Peterson · 13 years ago
  81. 9b6c605 plug refleak by Benjamin Peterson · 13 years ago
  82. 65c1535 Issue #12467: warnings: fix a race condition if a warning is emitted at by Victor Stinner · 13 years ago
  83. 19b851d sys.checkinterval() now refreshes the current countdown ticker. by Raymond Hettinger · 13 years ago
  84. 482f908 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  85. cf0d8ab Replay changeset 70238:03e488b5c009 from fubar branch. Original commit message: by Barry Warsaw · 13 years ago
  86. 11041f0 Port #6498 fix: fix several misspellings of "SystemExit" as "SystemError". by Georg Brandl · 13 years ago
  87. 0a92d18 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file by Victor Stinner · 13 years ago
  88. 645b9f6 Issue #8651: Fix "z#" format of PyArg_Parse*() function: the size was not by Victor Stinner · 13 years ago
  89. 4394e0d Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 13 years ago
  90. c283a85 Issue #5057: fix a bug in the peepholer that led to non-portable pyc files between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. u"\U00012345"[0]). by Ezio Melotti · 13 years ago
  91. 04cb72f Issue9670: Back out changeset b0d2b696da19; test fails on other platforms by Ned Deily · 14 years ago
  92. e427f0f Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 14 years ago
  93. 7859d40 remove this dead subversion code by Benjamin Peterson · 14 years ago
  94. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  95. 24b07bc #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  96. 3a5508e Port build identification from default branch. by Georg Brandl · 14 years ago
  97. 94800df Merged revisions 88430,88438,88440 via svnmerge from by Georg Brandl · 14 years ago
  98. 4c29e1c Merged revisions 87796 via svnmerge from by David Malcolm · 14 years ago
  99. fe0263d Merged revisions 87607 via svnmerge from by Benjamin Peterson · 14 years ago
  100. 64a1e7c Merged revisions 87251 via svnmerge from by R. David Murray · 14 years ago