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