1. 0d5e52d Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  2. 3cbf14b Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 13 years ago
  3. 1188935 Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0) by Victor Stinner · 13 years ago
  4. 0c759fe Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 13 years ago
  5. 7124f5f MERGE: Up-port changeset 5cf8f6da8743 (closes #11890) by Jesus Cea · 13 years ago
  6. 1d4ae84 Up-port changeset 5cf8f6da8743 (closes #11890) by Jesus Cea · 13 years ago
  7. 71e84a6 #5057: Merge with 3.1. by Ezio Melotti · 13 years ago
  8. 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
  9. 62f8bcb merge 3.1 by Benjamin Peterson · 13 years ago
  10. bd3e362 make assigning to a bytes literal a syntax error (closes #11506) by Benjamin Peterson · 13 years ago
  11. 2604e33 Issue9670: Merge backout to 3.2. by Ned Deily · 13 years ago
  12. 45e47e5 Issue9670: Back out changeset 378b40d71175; test fails on other platforms by Ned Deily · 13 years ago
  13. 15012a6 Issue #9670: merge with 3.2 by Ned Deily · 13 years ago
  14. 517ac72 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  15. 12338ab Removed 'or long integer' from bin, oct, and hex docstrings. by Alexander Belopolsky · 13 years ago
  16. 27181ac sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not by Victor Stinner · 13 years ago
  17. 7899acf Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. by Antoine Pitrou · 13 years ago
  18. 451385d Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file by Victor Stinner · 13 years ago
  19. 9c4efe5 Fix #11586: typo in initfsencoding() by Victor Stinner · 13 years ago
  20. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  21. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  22. 29dcaad Issue 11510: Fix BUILD_SET optimizer bug. by Raymond Hettinger · 13 years ago
  23. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  24. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  25. 13039c8 Merge build identification to 3.2 branch. by Georg Brandl · 13 years ago
  26. 1ca2e79 Commit the hg build identification patch from the pymigr repo. by Georg Brandl · 13 years ago
  27. 3f0df3b Merged revisions 88430 via svnmerge from by Georg Brandl · 13 years ago
  28. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 13 years ago
  29. 59e87bd #730467: Another small AIX fix. by Georg Brandl · 14 years ago
  30. 6a002c0 Fix the GIL with subinterpreters. Hopefully this will allow mod_wsgi to work with 3.2. by Antoine Pitrou · 14 years ago
  31. 8ad4cd9 Merged revisions 87796 via svnmerge from by David Malcolm · 14 years ago
  32. f1397ad Issue #10655: Fix the build on PowerPC on Linux with GCC when building with by David Malcolm · 14 years ago
  33. 90e8f8c Fix count of flag fields. Being one short caused the 'quiet' option not to print. by Raymond Hettinger · 14 years ago
  34. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  35. 6ab8e82 Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred by Victor Stinner · 14 years ago
  36. a093d0d Issue #8992: Simplify addcleanup() API by Victor Stinner · 14 years ago
  37. b3c9e07 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file by Victor Stinner · 14 years ago
  38. beef5dc Merged revisions 87607 via svnmerge from by Benjamin Peterson · 14 years ago
  39. 834cb39 update copyright to 2011 by Benjamin Peterson · 14 years ago
  40. 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 14 years ago
  41. 92be939 Issue #10780: PyErr_SetFromWindowsErrWithFilename() and by Victor Stinner · 14 years ago
  42. cb428f0 Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem by Victor Stinner · 14 years ago
  43. 810023d Issue #8844: Regular and recursive lock acquisitions can now be interrupted by Antoine Pitrou · 14 years ago
  44. 13d49ee Issue #10601: sys.displayhook uses 'backslashreplace' error handler on by Victor Stinner · 14 years ago
  45. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 14 years ago
  46. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  47. ebc0052 import: use PyUnicode_FSConverter to support bytes path and PEP 383 by Victor Stinner · 14 years ago
  48. b2ddf79 Issue #9573: os.fork now works when triggered as a side effect of import (the wisdom of actually relying on this remains questionable!) by Nick Coghlan · 14 years ago
  49. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  50. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  51. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  52. 0a4dae5 fix refleak by Benjamin Peterson · 14 years ago
  53. 5a96b52 Issue #10255: Fix reference leak in Py_InitializeEx(). Patch by Neil by Antoine Pitrou · 14 years ago
  54. 787cddc Merged revisions 86545 via svnmerge from by Benjamin Peterson · 14 years ago
  55. d8f6597 new plan: functions that want 'tmp' can declare it by Benjamin Peterson · 14 years ago
  56. e82c169 Merged revisions 86540 via svnmerge from by Benjamin Peterson · 14 years ago
  57. 0e9e98e c89 declarations by Benjamin Peterson · 14 years ago
  58. aab9585 Merged revisions 86538 via svnmerge from by Benjamin Peterson · 14 years ago
  59. 5b06681 use %R format code; fixes invalid dereferencing #10391 by Benjamin Peterson · 14 years ago
  60. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  61. cf9f980 Issue #10372: Import the warnings module only after the IO library is by Antoine Pitrou · 14 years ago
  62. 3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C by Victor Stinner · 14 years ago
  63. 19de4c3 _Py_char2wchar() frees the memory on conversion error by Victor Stinner · 14 years ago
  64. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  65. 3d89751 Merged revisions 85980 via svnmerge from by Hirokazu Yamamoto · 14 years ago
  66. daf83ac Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. by Hirokazu Yamamoto · 14 years ago
  67. c8850d0 Merged revisions 85817,85904 via svnmerge from by Benjamin Peterson · 14 years ago
  68. a95e977 decrement offset when it points to a newline (#10186 followup) by Benjamin Peterson · 14 years ago
  69. 98e2b45 Merged revisions 85896 via svnmerge from by Antoine Pitrou · 14 years ago
  70. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  71. 07e4f15 sys_update_path(): update sys.path even if argc==0 by Victor Stinner · 14 years ago
  72. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  73. d4519c1 tighten loop by Benjamin Peterson · 14 years ago
  74. 9831611 Merged revisions 85814 via svnmerge from by Benjamin Peterson · 14 years ago
  75. 503d6c5 remove broken code accounting an offset the size of the line #10186 by Benjamin Peterson · 14 years ago
  76. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  77. 3aa6cea Issue #10077: Fix logging of site module errors at startup. by Victor Stinner · 14 years ago
  78. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  79. 4d3d08f Merged revisions 85757 via svnmerge from by Benjamin Peterson · 14 years ago
  80. b8ffb60 fix uninitialized struct member #10152 by Benjamin Peterson · 14 years ago
  81. 15244f7 Recorded merge of revisions 85569-85570 via svnmerge from by Victor Stinner · 14 years ago
  82. e474309 initfsencoding(): get_codeset() failure is now a fatal error by Victor Stinner · 14 years ago
  83. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  84. c049982 compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename, by Victor Stinner · 14 years ago
  85. 15a71cd PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead of by Victor Stinner · 14 years ago
  86. ed7916d find_module(): use FS encoding to display the missing __init__ warning by Victor Stinner · 14 years ago
  87. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  88. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  89. 0a1b8cb _Py_wrealpath() uses _Py_char2wchar() to decode the result, to support by Victor Stinner · 14 years ago
  90. 350147b _Py_wreadlink(): catch _Py_char2wchar() failure by Victor Stinner · 14 years ago
  91. 3f711f4 _Py_wreadlink() uses _Py_char2wchar() to decode the result, to support by Victor Stinner · 14 years ago
  92. 2f2ed1f Fix ast_error_finish() and err_input(): filename can be NULL by Victor Stinner · 14 years ago
  93. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  94. e963349 Merged revisions 85562 via svnmerge from by Benjamin Peterson · 14 years ago
  95. 230b206 don't identify the toplevel namespace by name #9997 by Benjamin Peterson · 14 years ago
  96. 294a9fc fix refleak by Benjamin Peterson · 14 years ago
  97. 8cf4eae First (uncontroversial) part of issue 9807. by Barry Warsaw · 14 years ago
  98. 88bd891 Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the by Victor Stinner · 14 years ago
  99. 1a56303 imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module by Victor Stinner · 14 years ago
  100. 3ea23dd imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in by Victor Stinner · 14 years ago