1. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  2. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  3. 4030027 Issue #25339: PYTHONIOENCODING now has priority over locale in setting the by Serhiy Storchaka · 8 years ago
  4. fc43511 Issue #25339: PYTHONIOENCODING now has priority over locale in setting the by Serhiy Storchaka · 8 years ago
  5. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  6. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  7. 9423023 Minor code cleanup for PyArg_UnpackTuple. by Raymond Hettinger · 8 years ago
  8. ca9dbc7 makeopcodetargets.py: we need to import Lib/opcode.py by Victor Stinner · 8 years ago
  9. a9a852c Modernize Python/makeopcodetargets.py by Victor Stinner · 8 years ago
  10. 4f17426 Fix bug in __import__ during Python shutdown by Victor Stinner · 8 years ago
  11. 023654f get_warnings_attr(): Fix coverity warning by Victor Stinner · 8 years ago
  12. 1c3069a Rework _Py_DumpASCII() to make Coverity happy by Victor Stinner · 8 years ago
  13. 976bb40 compiler.c: fix compiler warnings on Windows by Victor Stinner · 8 years ago
  14. bd31b7c Issue #23848: Expose _Py_DumpHexadecimal() by Victor Stinner · 8 years ago
  15. 5dacbd4 Cleanup hashtable.h by Victor Stinner · 8 years ago
  16. e8c6b2f Issue #26588: by Victor Stinner · 8 years ago
  17. e98445a _warnings.warn_explicit(): try to import warnings by Victor Stinner · 8 years ago
  18. e19558a Add a source parameter to warnings.warn() by Victor Stinner · 8 years ago
  19. 285cf0a hashtable.h now supports keys of any size by Victor Stinner · 8 years ago
  20. 322bc12 Ooops, revert changeset ea9efa06c137 by Victor Stinner · 8 years ago
  21. 51b846c _tracemalloc: add domain to trace keys by Victor Stinner · 8 years ago
  22. 914cde8 On ResourceWarning, log traceback where the object was allocated by Victor Stinner · 8 years ago
  23. 1231a46 Add _showwarnmsg() and _formatwarnmsg() to warnings by Victor Stinner · 8 years ago
  24. 2025d78 Py_FatalError: disable faulthandler earlier by Victor Stinner · 8 years ago
  25. 861d9ab faulthandler now works in non-Python threads by Victor Stinner · 8 years ago
  26. 013024e Fix compilation error of traceback.c on Windows by Victor Stinner · 8 years ago
  27. 82f04e2 regrtest: Fix module.__path__ by Victor Stinner · 8 years ago
  28. 89e7cdc Enhance and rewrite traceback dump C functions by Victor Stinner · 8 years ago
  29. 8a1be61 Add more checks on the GIL by Victor Stinner · 8 years ago
  30. 791da1c Fix Py_FatalError() if called without the GIL by Victor Stinner · 8 years ago
  31. 34be807 Add PYTHONMALLOC env var by Victor Stinner · 8 years ago
  32. d2dc15b Merge 3.5 (issue #25888) by Yury Selivanov · 8 years ago
  33. c724bae coroutines: Error when awaiting on coroutine that's being awaited by Yury Selivanov · 8 years ago
  34. 2ad474b Update assertion in compiler_addop_i() by Victor Stinner · 8 years ago
  35. 8cacc63 Issue #22836: Merge exception reporting from 3.5 by Martin Panter · 8 years ago
  36. 3263f68 Issue #22836: Keep exception reports sensible despite errors by Martin Panter · 8 years ago
  37. fc6f2ef compile.c: inline compiler_use_new_block() by Victor Stinner · 8 years ago
  38. 9d66d4a remove unused c_encoding struct member by Benjamin Peterson · 9 years ago
  39. 768921c rewrite parsestr() so it's comprehensible; remove dead code by Benjamin Peterson · 9 years ago
  40. 202803a c_encoding can never be NULL, which allows some code simplification by Benjamin Peterson · 9 years ago
  41. 0911c0d Merge for issue #26367 by Brett Cannon · 9 years ago
  42. 4f38cb4 Issue #26367: Have importlib.__init__() raise RuntimeError when by Brett Cannon · 9 years ago
  43. 885bdc4 Issue #25985: sys.version_info is now used instead of sys.version by Serhiy Storchaka · 9 years ago
  44. a9725f8 Issue #26312: SystemError is now raised in all programming bugs with using by Serhiy Storchaka · 9 years ago
  45. 5b613dd Issue #25698: Prevent possible replacing imported module with the empty one by Serhiy Storchaka · 9 years ago
  46. 48a583b Issue #25698: Prevent possible replacing imported module with the empty one by Serhiy Storchaka · 9 years ago
  47. 15a3095 compiler: don't emit SyntaxWarning on const stmt by Victor Stinner · 9 years ago
  48. a272409 compiler now ignores constant statements by Victor Stinner · 9 years ago
  49. 4cd63ef Issue #26198: ValueError is now raised instead of TypeError on buffer by Serhiy Storchaka · 9 years ago
  50. 3e17c78 Issue #26198: Fixed error messages for some argument parsing errors. by Serhiy Storchaka · 9 years ago
  51. c4b813d Issue #26198: Fixed error messages for some argument parsing errors. by Serhiy Storchaka · 9 years ago
  52. eb588a1 Switch to more idiomatic C code. by Eric V. Smith · 9 years ago
  53. 135d5f4 Fix issue 26287: While handling FORMAT_VALUE opcode, the top of stack was being corrupted if an error occurred in PyObject_Format(). by Eric V. Smith · 9 years ago
  54. cca3299 Issue #4806: Merge * unpacking fix from 3.5 by Martin Panter · 9 years ago
  55. b594422 Issue #4806: Avoid masking original TypeError in call with * unpacking by Martin Panter · 9 years ago
  56. be59d14 Issue #26146: enhance ast.Constant error message by Victor Stinner · 9 years ago
  57. 25219f5 Issue #26146: remove useless code by Victor Stinner · 9 years ago
  58. 726f690 Fix a refleak in validate_constant() by Victor Stinner · 9 years ago
  59. f2c1aa1 Add ast.Constant by Victor Stinner · 9 years ago
  60. 1aa7893 Issue #26146: marshal.loads() now uses the empty frozenset singleton by Victor Stinner · 9 years ago
  61. 9fa8126 Issue #18018: Raise an ImportError if a relative import is attempted by Brett Cannon · 9 years ago
  62. 849113a Issue #25791: Warn when __package__ != __spec__.parent. by Brett Cannon · 9 years ago
  63. b02ef71 Use Py_uintptr_t for atomic pointers by Victor Stinner · 9 years ago
  64. 3cdd5fb code_richcompare() now uses the constants types by Victor Stinner · 9 years ago
  65. efb2413 code_richcompare() now uses the constants types by Victor Stinner · 9 years ago
  66. f3914eb co_lnotab supports negative line number delta by Victor Stinner · 9 years ago
  67. b56837a Merge 3.5 by Victor Stinner · 9 years ago
  68. bfd316e Add _PyThreadState_UncheckedGet() by Victor Stinner · 9 years ago
  69. 4b5b062 Fix indentation of continuation lines. by Georg Brandl · 9 years ago
  70. 5c60ea3 Fix two instances of wrong indentation. by Georg Brandl · 9 years ago
  71. 63b8505 Issue #25791: Raise an ImportWarning when __spec__ or __package__ are by Brett Cannon · 9 years ago
  72. 576f132 Issue #20440: Cleaning up the code by using Py_SETREF. by Serhiy Storchaka · 9 years ago
  73. 71db903 merge 3.5 by Benjamin Peterson · 9 years ago
  74. 4c70293 merge 3.4 by Benjamin Peterson · 9 years ago
  75. e8c2a95 merge 3.3 by Benjamin Peterson · 9 years ago
  76. 75e3630 2016 will be another year of writing copyrighted code by Benjamin Peterson · 9 years ago
  77. 5aab44b merge 3.5 (#25973) by Benjamin Peterson · 9 years ago
  78. 3cc8f4b make recording and reporting errors and nonlocal and global directives more robust (closes #25973) by Benjamin Peterson · 9 years ago
  79. eae3079 Issue #25802: Deprecate load_module() on importlib.machinery.SourceFileLoader and SourcelessFileLoader. by Brett Cannon · 9 years ago
  80. 726fc13 Issue #20440: More use of Py_SETREF. by Serhiy Storchaka · 9 years ago
  81. 191321d Issue #20440: More use of Py_SETREF. by Serhiy Storchaka · 9 years ago
  82. bdb908e Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
  83. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
  84. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  85. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  86. f006940 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  87. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  88. 3fd4a73 Issue #25899: Converted non-ASCII characters in docstrings and manpage by Serhiy Storchaka · 9 years ago
  89. 225821c Issue #25899: Converted non-ASCII characters in docstrings and manpage by Serhiy Storchaka · 9 years ago
  90. afaf354 Merge typo fixes from 3.5 by Martin Panter · 9 years ago
  91. 6f9b010 Fix a couple of typos in code comments by Martin Panter · 9 years ago
  92. b4ce1fc Issue #5319: New Py_FinalizeEx() API to exit with status 120 on failure by Martin Panter · 9 years ago
  93. b4efc96 Issue #25557: Refactor _PyDict_LoadGlobal() by Victor Stinner · 9 years ago
  94. e0a0afd Merge 3.5 (pytime) by Victor Stinner · 9 years ago
  95. c379ade pytime.c: rename pygettimeofday_new() to pygettimeofday() by Victor Stinner · 9 years ago
  96. fad85aa Issue #25558: Use compile-time asserts. by Serhiy Storchaka · 9 years ago
  97. 9513ba3 Issue #24802: Merge null termination fixes from 3.5 by Martin Panter · 9 years ago
  98. 61d6e4a Issue #24802: Merge null termination fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  99. eeb896c Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary by Martin Panter · 9 years ago
  100. f9827ea Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when by Victor Stinner · 9 years ago