1. 318e621 Merge #6498 fix from 3.1. by Georg Brandl · 13 years ago
  2. 0b2489e Closes #6498: fix several misspellings of "SystemExit" as "SystemError". by Georg Brandl · 13 years ago
  3. 0d5e52d Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  4. 3cbf14b Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 13 years ago
  5. 1188935 Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0) by Victor Stinner · 13 years ago
  6. 9c4efe5 Fix #11586: typo in initfsencoding() by Victor Stinner · 13 years ago
  7. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 13 years ago
  8. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  9. 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 14 years ago
  10. 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
  11. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  12. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  13. 5a96b52 Issue #10255: Fix reference leak in Py_InitializeEx(). Patch by Neil by Antoine Pitrou · 14 years ago
  14. cf9f980 Issue #10372: Import the warnings module only after the IO library is by Antoine Pitrou · 14 years ago
  15. 3d89751 Merged revisions 85980 via svnmerge from by Hirokazu Yamamoto · 14 years ago
  16. daf83ac Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. by Hirokazu Yamamoto · 14 years ago
  17. c8850d0 Merged revisions 85817,85904 via svnmerge from by Benjamin Peterson · 14 years ago
  18. a95e977 decrement offset when it points to a newline (#10186 followup) by Benjamin Peterson · 14 years ago
  19. d4519c1 tighten loop by Benjamin Peterson · 14 years ago
  20. 9831611 Merged revisions 85814 via svnmerge from by Benjamin Peterson · 14 years ago
  21. 503d6c5 remove broken code accounting an offset the size of the line #10186 by Benjamin Peterson · 14 years ago
  22. 3aa6cea Issue #10077: Fix logging of site module errors at startup. by Victor Stinner · 14 years ago
  23. 15244f7 Recorded merge of revisions 85569-85570 via svnmerge from by Victor Stinner · 14 years ago
  24. e474309 initfsencoding(): get_codeset() failure is now a fatal error by Victor Stinner · 14 years ago
  25. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  26. 2f2ed1f Fix ast_error_finish() and err_input(): filename can be NULL by Victor Stinner · 14 years ago
  27. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  28. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  29. 6a4aff1 redecode_filename(): don't need to initialize variables by Victor Stinner · 14 years ago
  30. 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 14 years ago
  31. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  32. b0b384b Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other by Antoine Pitrou · 14 years ago
  33. 1df1536 Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly by Antoine Pitrou · 14 years ago
  34. 94908bb Issue #8622: Add PYTHONFSENCODING environment variable to override the by Victor Stinner · 14 years ago
  35. 6961bd6 Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx(). by Victor Stinner · 14 years ago
  36. 696e035 Issue #477863: Print a warning at shutdown if gc.garbage is not empty. by Antoine Pitrou · 14 years ago
  37. b61d5c9 Merged revisions 83854 via svnmerge from by Antoine Pitrou · 14 years ago
  38. bddc9fe Issue #5319: Print an error if flushing stdout fails at interpreter shutdown. by Antoine Pitrou · 14 years ago
  39. 6fc4ade Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API by Alexander Belopolsky · 14 years ago
  40. 25bb0fd Merged revisions 82059,82061 via svnmerge from by Victor Stinner · 14 years ago
  41. 0fe25a4 Issue #6543: Write the traceback in the terminal encoding instead of utf-8. by Victor Stinner · 14 years ago
  42. 7f84ab5 Issue #8965: initfsencoding() doesn't change the encoding on Mac OS X by Victor Stinner · 14 years ago
  43. 93362d4 Merged revisions 81844 via svnmerge from by Victor Stinner · 14 years ago
  44. 55a5c78 Py_FatalError(): don't sys sys.last_xxx variables by Victor Stinner · 14 years ago
  45. 7126dbc Issue #3798: sys.exit(message) writes the message to sys.stderr file, instead by Victor Stinner · 14 years ago
  46. 148051a Recorded merge of revisions 81364 via svnmerge from by Victor Stinner · 14 years ago
  47. 7d79b8b Issue #8766: Initialize _warnings module before importing the first module. by Victor Stinner · 14 years ago
  48. 386fe71 Issue #6697: Check that _PyUnicode_AsString() result is not NULL by Victor Stinner · 14 years ago
  49. 2e71d01 Merged revisions 81250-81253 via svnmerge from by Victor Stinner · 14 years ago
  50. e9fb319 handle_system_exit() flushs files to warranty the output order by Victor Stinner · 14 years ago
  51. b744ba1 Issue #8610: Load file system codec at startup, and display a fatal error on by Victor Stinner · 14 years ago
  52. ebb5a88 Merged revisions 81156 via svnmerge from by Victor Stinner · 14 years ago
  53. 9467b21 Issue #4653: fix typo in flush_std_files() by Victor Stinner · 14 years ago
  54. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  55. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  56. 9c39bc7 Merged revisions 81016 via svnmerge from by Jean-Paul Calderone · 14 years ago
  57. 6f137ca Merged revisions 81007 via svnmerge from by Jean-Paul Calderone · 14 years ago
  58. b001df0 err_input(): don't encode/decode the unicode message by Victor Stinner · 14 years ago
  59. 28a691b PEP 3147 by Barry Warsaw · 14 years ago
  60. 1d6af70 Revert my change on initsite(): don't change import site error handler in 3.1, by Victor Stinner · 14 years ago
  61. ffbc2f6 Merged revisions 78872 via svnmerge from by Victor Stinner · 14 years ago
  62. fb94c5f * Replaces the internals of the subprocess module from fork through exec on by Gregory P. Smith · 14 years ago
  63. 52f6dd7 Merged revisions 78826 via svnmerge from by Victor Stinner · 14 years ago
  64. b2ceb3a #4532: fixes to make 3.x compile on QNX 6.3.2 (reported by Matt Kraai) by Andrew M. Kuchling · 14 years ago
  65. bcc63a8 Merged revisions 76573 via svnmerge from by Antoine Pitrou · 15 years ago
  66. 7b0d4a2 Issue #4486: When an exception has an explicit cause, do not print its implicit context too. by Antoine Pitrou · 15 years ago
  67. cefb316 Merged revisions 75571,75576-75577 via svnmerge from by Antoine Pitrou · 15 years ago
  68. 011bd62 Merged revisions 75570 via svnmerge from by Antoine Pitrou · 15 years ago
  69. cc3b8d6 bytes -> bytearray by Benjamin Peterson · 15 years ago
  70. 011e842 Issue #5915: Implement PEP 383, Non-decodable Bytes in by Martin v. Löwis · 15 years ago
  71. 042f133 Merged revisions 71152 via svnmerge from by Matthias Klose · 15 years ago
  72. e3944a5 The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! by Brett Cannon · 15 years ago
  73. a931404 Merged revisions 70908 via svnmerge from by Jesse Noller · 15 years ago
  74. 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 15 years ago
  75. f5b5224 ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 by Benjamin Peterson · 15 years ago
  76. 27fe9fc Followup of #4705: we can't skip the binary buffering layer for stdin because FileIO doesn't have a read1() method by Antoine Pitrou · 15 years ago
  77. 9169641 Fix bug introduced in r68451: stdio must always be opened in line-buffered mode by Antoine Pitrou · 16 years ago
  78. 0560843 Issue #4705: Fix the -u ("unbuffered binary stdout and stderr") command-line by Antoine Pitrou · 16 years ago
  79. 80a50ac Merged revisions 68174 via svnmerge from by Benjamin Peterson · 16 years ago
  80. 5c88d81 Merged revisions 68172-68173 via svnmerge from by Martin v. Löwis · 16 years ago
  81. b0c2916 Merged revisions 67295,67301-67302,67318,67330,67342-67343 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  82. f216c94 Merged revisions 67066 via svnmerge from by Benjamin Peterson · 16 years ago
  83. 6a27efa Issue 3723: Fixed initialization of subinterpreters by Christian Heimes · 16 years ago
  84. 5833a2f Issue #4213: The file system encoding is now normalized by the codec subsystem, for example UTF-8 is turned into utf-8. by Christian Heimes · 16 years ago
  85. 791dc2f compile _bytesio and _stringio into the binary and initalize stdio before site fixing #3279 by Benjamin Peterson · 16 years ago
  86. e2dffc0 #3663: extra DECREF on syntax errors. by Antoine Pitrou · 16 years ago
  87. 2658260 fix #3653 Python could segfault if invalid values were passed to sys.excepthook by Benjamin Peterson · 16 years ago
  88. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  89. 3dbca81 Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-65099,65127-65128,65131,65133-65136,65139,65149-65151,65155,65158-65159,65176-65178,65183-65184,65187-65190,65192,65194 via svnmerge from by Georg Brandl · 16 years ago
  90. 86b2fb9 Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from by Georg Brandl · 16 years ago
  91. d88ddfa Make these files to compile again under Windows. by Thomas Heller · 16 years ago
  92. e652821 implement chained exception tracebacks by Benjamin Peterson · 16 years ago
  93. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  94. f1ca0b1 Issue 1342: Python could not start if installed in a directory by Amaury Forgeot d'Arc · 16 years ago
  95. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  96. b2750b5 Move the codec decode type checks to bytes/bytearray.decode(). by Marc-André Lemburg · 16 years ago
  97. 7cd068b Fix uninitialized variable access, release memory. by Martin v. Löwis · 16 years ago
  98. 0f59989 Forward-port PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  99. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  100. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago