1. 55ad651 Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to decref 'k' in too many error cases. by Christian Heimes · 12 years ago
  2. 1526582 Partly revert ad3824a90261 and add comment about reference ownership by Christian Heimes · 12 years ago
  3. 5557a9c Fix null pointer dereferencing in structmember.c PyMember_SetOne() for T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815 by Christian Heimes · 12 years ago
  4. 3d46339 Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s going out of scope leaks the storage it points to. by Christian Heimes · 12 years ago
  5. 48d8d21 Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
  6. 837e53a Closed reference leak of variable 'k' in function ste_new which wasn't decrefed in error cases by Christian Heimes · 12 years ago
  7. 7ff1822 Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. by Antoine Pitrou · 12 years ago
  8. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  9. c7dedb0 put * in the normal place by Benjamin Peterson · 12 years ago
  10. c5d7518 move variable decl to the top of the function by Benjamin Peterson · 12 years ago
  11. 2e2c903 prevert ast errors from being normalized before ast_error_finish is called (closes #15846) by Benjamin Peterson · 12 years ago
  12. 75506e8 Issue #15726: Fix incorrect bounds checking in PyState_FindModule. by Antoine Pitrou · 12 years ago
  13. 07795df Issue #15741: Fix potential NULL dereference. Found by Coverity. by Stefan Krah · 12 years ago
  14. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  15. 90ef747 Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 12 years ago
  16. 996ae04 remove unused variable by Meador Inge · 12 years ago
  17. f69e24e Issue #15368: fixing variable typo. by Meador Inge · 12 years ago
  18. 2ca6315 Issue #15368: make bytecode generation deterministic. by Meador Inge · 12 years ago
  19. 01cca5e Issue #15020: The program name used to search for Python's path is now "python3" under Unix, not "python". by Antoine Pitrou · 12 years ago
  20. 8e8fbea don't leak if the __class__ closure is set by Benjamin Peterson · 12 years ago
  21. d576c71 Issue #14761: Fix potential leak on an error case in the import machinery. by Antoine Pitrou · 12 years ago
  22. d9e4a41 Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c. by Larry Hastings · 12 years ago
  23. 32c59b6 mangle keyword-only argname when loading defaults (closes #14607) by Benjamin Peterson · 12 years ago
  24. 3bf0175 move outside WITH_THREAD conditional by Benjamin Peterson · 12 years ago
  25. 43162b8 take linkage def outside of WITH_THREAD conditional (closes #14569) by Benjamin Peterson · 12 years ago
  26. 80d5042 fix parse_syntax_error to clean up its resources by Benjamin Peterson · 12 years ago
  27. c5d47d5 Fix typo when "PyObject*" was changed to "identifier" by Kristján Valur Jónsson · 12 years ago
  28. 9faf5ee this should technicaly be identifier by Benjamin Peterson · 12 years ago
  29. ab79c71 check for NULL by Benjamin Peterson · 12 years ago
  30. a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 12 years ago
  31. c809f98 Fixes Issue #14331: Use significantly less stack space when importing modules by by Gregory P. Smith · 12 years ago
  32. 7ca97d5 Issue #14184: Increase the default stack size for secondary threads on by Ned Deily · 12 years ago
  33. 3f35846 kill this disabled code by Benjamin Peterson · 12 years ago
  34. bc4665e use correct naming convention by Benjamin Peterson · 12 years ago
  35. 4a90ef0 Issue #14177: marshal.loads() now raises TypeError when given an unicode string. by Antoine Pitrou · 12 years ago
  36. 679e9d3 Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object). by Antoine Pitrou · 12 years ago
  37. 4f22a8d Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 12 years ago
  38. 7214612 In find_module(), do not silence fileno() and dup() errors. by Antoine Pitrou · 12 years ago
  39. 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago
  40. e249dca merge 3.2 by Benjamin Peterson · 12 years ago
  41. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 12 years ago
  42. 91e5c08 Fix typo in conditional. by Georg Brandl · 12 years ago
  43. 12897d7 Fix typo in conditional. by Georg Brandl · 12 years ago
  44. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  45. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  46. 9713321 Document absoluteness of sys.executable by Petri Lehtinen · 12 years ago
  47. 33d15f7 Port import fixes from 2.7. by Antoine Pitrou · 12 years ago
  48. 2be60af 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 · 12 years ago
  49. 1b468af Issue #13722: Avoid silencing ImportErrors when initializing the codecs registry. by Antoine Pitrou · 12 years ago
  50. 6c40eb7 Fix the builtin module initialization code to store the init function for future reinitialization. by Antoine Pitrou · 12 years ago
  51. 2fabfac Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 12 years ago
  52. 3388060 Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes. by Meador Inge · 13 years ago
  53. 0010256 fold into one if statement by Benjamin Peterson · 13 years ago
  54. a12d5c6 fix formatting by Benjamin Peterson · 13 years ago
  55. f606e68 add another year to glorious PSF IP by Benjamin Peterson · 13 years ago
  56. 5126df6 Remove obsolete py3k comment. by Florent Xicluna · 13 years ago
  57. 11942a5 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
  58. d7c8fbf Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. by Antoine Pitrou · 13 years ago
  59. 5e8f810 Issue #13436: commit regenerated Python-ast.c by Amaury Forgeot d'Arc · 13 years ago
  60. a233df8 Issue #13156: _PyGILState_Reinit(): Re-associate the auto thread state with the by Charles-François Natali · 13 years ago
  61. 0d776b1 Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode by Antoine Pitrou · 13 years ago
  62. 97c1bef Issue #13343: Fix a SystemError when a lambda expression uses a global by Amaury Forgeot d'Arc · 13 years ago
  63. 5df1108 Add signatures to the docstring of functions added to imp by PEP 3147 by Éric Araujo · 13 years ago
  64. 8db076c Issue #10363: Deallocate global locks in Py_Finalize(). by Antoine Pitrou · 13 years ago
  65. 4d46c2a Remove unused variable. by Florent Xicluna · 13 years ago
  66. de31b19 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. by Nick Coghlan · 13 years ago
  67. 53ffdc5 Issue #7732: Don't open a directory as a file anymore while importing a by Victor Stinner · 13 years ago
  68. 916048d - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 13 years ago
  69. 1619132 Fix the import machinery if there is an error on sys.path or sys.meta_path by Victor Stinner · 13 years ago
  70. 0af0306 Remove unused variable if Python is build without threads by Victor Stinner · 13 years ago
  71. 0224d4e accept bytes for the AST 'string' type by Benjamin Peterson · 13 years ago
  72. 6c0ba44 Fix style in code added by edba722f3b02 by Éric Araujo · 13 years ago
  73. cf9d3c0 Issue #1813: Fix codec lookup under Turkish locales. by Antoine Pitrou · 13 years ago
  74. 180e635 None is ok for identifiers but not strings by Benjamin Peterson · 13 years ago
  75. efad244 hardcode the old svn __version__ by Benjamin Peterson · 13 years ago
  76. 2193d2b type check AST strings and identifiers by Benjamin Peterson · 13 years ago
  77. 5afa03a catch nasty exception classes with __new__ that doesn't return a exception (closes #11627) by Benjamin Peterson · 13 years ago
  78. bb4a747 start out this branch always with filename NULL by Benjamin Peterson · 13 years ago
  79. a55007a plug refleak by Benjamin Peterson · 13 years ago
  80. 8b0508e Issue #12467: warnings: fix a race condition if a warning is emitted at by Victor Stinner · 13 years ago
  81. ac91341 never retain a generator's caller's exception state on the generator after a yield/return by Benjamin Peterson · 13 years ago
  82. d2ed630 merge heads by Benjamin Peterson · 13 years ago
  83. 83195c3 restore a generator's caller's exception state both on yield and (last) return by Benjamin Peterson · 13 years ago
  84. b7149ca fix indentation by Benjamin Peterson · 13 years ago
  85. f63d615 fix indentation by Benjamin Peterson · 13 years ago
  86. 623e8b8 Removed some unused local variables. by Vinay Sajip · 13 years ago
  87. 5bdae3b Closes #12291: Fixed bug which was found when doing multiple loads from one stream. by Vinay Sajip · 13 years ago
  88. 056f5b9 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  89. 9a7c524 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  90. a290bac merge 3.1 by Benjamin Peterson · 13 years ago
  91. 0a5dad9 fix spacing by Benjamin Peterson · 13 years ago
  92. 5218853 merge 3.1 by Benjamin Peterson · 13 years ago
  93. 74897ba fix indentation by Benjamin Peterson · 13 years ago
  94. 9cd6626 (Merge 3.1) Issue #11614: import __hello__ prints "Hello World!". Patch written by Victor Stinner · 13 years ago
  95. c77b931 Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas by Victor Stinner · 13 years ago
  96. 318e621 Merge #6498 fix from 3.1. by Georg Brandl · 13 years ago
  97. 0b2489e Closes #6498: fix several misspellings of "SystemExit" as "SystemError". by Georg Brandl · 13 years ago
  98. 0d5e52d Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  99. 3cbf14b Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 13 years ago
  100. 1188935 Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0) by Victor Stinner · 13 years ago