1. 3c60833 Patch #2477: Added from __future__ import unicode_literals by Christian Heimes · 17 years ago
  2. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
  3. 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 17 years ago
  4. 5299935 Perform correct handling of stack overflow for windows: Catch the correct exception code and reset the overflow condition when handled. by Kristján Valur Jónsson · 17 years ago
  5. f75dbef Deallocate content of the dict free list on interpreter shutdown by Christian Heimes · 17 years ago
  6. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
  7. 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 17 years ago
  8. 025c347 Issue #1402: PyInterpreterState_Clear() may still invoke user code by Amaury Forgeot d'Arc · 17 years ago
  9. 67387fb Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typecast to get a 64 bit integer, and undefined the Yield macro that conflicts with winbase.h by Kristján Valur Jónsson · 18 years ago
  10. 276887b Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. by Collin Winter · 18 years ago
  11. 7b9c555 Bug #1678647: write a newline after printing an exception in any by Georg Brandl · 18 years ago
  12. aa2321b Patch #703779: unset __file__ in __main__ after running a file. This by Georg Brandl · 18 years ago
  13. 49aafc9 Variant of patch #697613: don't exit the interpreter on a SystemExit by Georg Brandl · 18 years ago
  14. 098cd69 Bug #1674503: close the file opened by execfile() in an error condition. by Georg Brandl · 18 years ago
  15. afea529 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize by Thomas Wouters · 18 years ago
  16. ca460d9 with and as are now keywords. There are some generated files I can't recreate. by Neal Norwitz · 19 years ago
  17. 0c6ae5b Handle a few more error conditions. by Neal Norwitz · 19 years ago
  18. 0f7dbf7 PyModule_GetDict() can fail, produce fatal errors if this happens on startup. by Neal Norwitz · 19 years ago
  19. 421c131 Whoops, how did that get in there. :-) Revert all the parts of 51227 that were not supposed to go it. Only Modules/_ctypes/cfields.c was supposed to be changed by Neal Norwitz · 19 years ago
  20. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 19 years ago
  21. b59d08c Fix more memory allocation issues found with failmalloc. by Neal Norwitz · 19 years ago
  22. d12bd01 Handle more memory allocation failures without crashing. by Neal Norwitz · 19 years ago
  23. a5e4f22 Reported by Klocwork #151. by Neal Norwitz · 19 years ago
  24. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 19 years ago
  25. 5e9d6cf PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-paste by Tim Peters · 19 years ago
  26. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 19 years ago
  27. 1b04664 Change those parts of the Python-api that were functions in 2.4, and by Thomas Heller · 19 years ago
  28. 45294a9 Remove types from type_list if they have no objects by Martin v. Löwis · 19 years ago
  29. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 19 years ago
  30. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 19 years ago
  31. ea62d25 Bug #1421664: Set sys.stderr.encoding by Martin v. Löwis · 19 years ago
  32. 62e97f0 In format strings slinging Py_ssize_t, unconditionally by Tim Peters · 19 years ago
  33. c9d78aa Years in the making. by Tim Peters · 19 years ago
  34. 9d78550 Address an coverity issue. Coverity was complaining about a line that's fine, by Guido van Rossum · 19 years ago
  35. f2e0c45 Fix warnings on x86 (32-bit). by Neal Norwitz · 19 years ago
  36. 99b93c2 Use %Id for size_t-ish things on Win64. by Martin v. Löwis · 19 years ago
  37. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 19 years ago
  38. 9589ee2 Tabify by Neal Norwitz · 19 years ago
  39. e92fba0 Get rid of run_err_mod(). It was only used in two places. by Neal Norwitz · 19 years ago
  40. 2e63b73 Fix refleak in PyErr_Display(). by Brett Cannon · 19 years ago
  41. 056a69c Reconst parameters that lost their const in the AST merge. by Martin v. Löwis · 19 years ago
  42. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
  43. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 19 years ago
  44. 2b366e4 Check whether there are flags. by Martin v. Löwis · 19 years ago
  45. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 19 years ago
  46. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  47. db83eb3 Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. by Neal Norwitz · 19 years ago
  48. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  49. b45b315 Patch #1350409: Port signal handling to VS 2005. by Martin v. Löwis · 19 years ago
  50. 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago
  51. 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 20 years ago
  52. d35edda Forward UnicodeDecodeError into SyntaxError for source encoding errors. by Martin v. Löwis · 20 years ago
  53. d794666 * Improve code for the empty frozenset singleton: by Raymond Hettinger · 20 years ago
  54. ba283e2 This is my patch: by Michael W. Hudson · 20 years ago
  55. 12b6f6c Move exception finalisation later in the shutdown process - this by Anthony Baxter · 20 years ago
  56. 4bf108d Patch #802188: better parser error message for non-EOL following line cont. by Martin v. Löwis · 20 years ago
  57. 9ceaa72 Patch #975056 - fixes for restartable signals on *BSD. In addition, by Anthony Baxter · 21 years ago
  58. 7f468f2 SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick by Tim Peters · 21 years ago
  59. fb09f0e Finalize the freelist of list objects. by Raymond Hettinger · 21 years ago
  60. 336e85f Patch #900727: Add Py_InitializeEx to allow embedding without signals. by Martin v. Löwis · 21 years ago
  61. c2632a5 Patch #984714: Properly diagnose E_DECODE errors. Backported to 2.3. by Martin v. Löwis · 21 years ago
  62. 30ea2f2 This closes patch: by Michael W. Hudson · 21 years ago
  63. e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 21 years ago
  64. 5d2c683 Lost reference. by Armin Rigo · 21 years ago
  65. 7befb99 remove support for missing ANSI C header files (limits.h, stddef.h, etc). by Skip Montanaro · 21 years ago
  66. 1d7323e Py_Finalize(): disabled the second call of cyclic gc, and added extensive by Tim Peters · 21 years ago
  67. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  68. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  69. f56d015 Patch #804543: strdup saved locales. Backported to 2.3. by Martin v. Löwis · 21 years ago
  70. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 22 years ago
  71. 68debc9 Fix refcounting and cut & paste error (?) in last checkin. by Michael W. Hudson · 22 years ago
  72. a2c17c5 Move initialization of sys.std{in,out}.encoding to Py_Initialize. by Martin v. Löwis · 22 years ago
  73. 5f4e8ca Correct previous patch looking for warnings module: sys.modules, not by Mark Hammond · 22 years ago
  74. edd0773 Fix [ 771097 ] frozen programs fail due to implicit import of "warnings". by Mark Hammond · 22 years ago
  75. 6cb9029 PyGILState cleanup was too early - destructors called via module cleanup may use the API. by Mark Hammond · 22 years ago
  76. cf615b5 handle_system_exit(): This leaked the current exception info, in by Tim Peters · 22 years ago
  77. 8d98d2c New PyGILState_ API - implements pep 311, from patch 684256. by Mark Hammond · 22 years ago
  78. 269b2a6 _Py_PrintReferences(): Changed to print object address at start of each by Tim Peters · 22 years ago
  79. e13ddc9 - New C API PyGC_Collect(), same as calling gc.collect(). by Guido van Rossum · 22 years ago
  80. 66ebd91 A missing piece of the PEP 269 patch: add PyParser_SetError(), a by Guido van Rossum · 22 years ago
  81. d08e382 Trimmed trailing whitespace. by Tim Peters · 22 years ago
  82. 9cf25ce Py_Finalize(): Reverted recent changes that tried to move the by Tim Peters · 22 years ago
  83. 0fc8f00 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() by Guido van Rossum · 22 years ago
  84. d922fa4 Move the call to _Py_PrintReferences() a bit further down. This by Guido van Rossum · 22 years ago
  85. 5c16c7b Move declaration of enc to scope where it is used by Neal Norwitz · 22 years ago
  86. 5ddd4c3 Fixed SF bug #663074. The codec system was using global static by Gustavo Niemeyer · 22 years ago
  87. 6a9a329 Declare all variables at the start of their scope. by Fred Drake · 22 years ago
  88. 73d538b Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, by Martin v. Löwis · 22 years ago
  89. 5bfba3a Addendum to #683658: by Just van Rossum · 22 years ago
  90. a43fd0c Fix bug 683658 - PyErr_Warn may cause import deadlock. by Mark Hammond · 22 years ago
  91. 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 22 years ago
  92. a038270 MacPython-OS9 has had an abort() function for quite a while now, so there's no reason to stall in an endless loop, just call abort() on a fatal error. by Jack Jansen · 22 years ago
  93. d7ceb22 Patch #671459: Invoke import hooks in Py_NewInterpreter. by Martin v. Löwis · 22 years ago
  94. b2501f4 Since the *_Init() are private, prefix with _, suggested by Skip by Neal Norwitz · 22 years ago
  95. c91ed40 SF #561244, Micro optimizations by Neal Norwitz · 22 years ago
  96. 52e14d6 PEP 302 + zipimport: by Just van Rossum · 22 years ago
  97. 72f3b7a Added missing casts. by Jack Jansen · 22 years ago
  98. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  99. 89350a4 Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes by Neil Schemenauer · 22 years ago
  100. 8ed0204 If we have a filename and __main__.__file__ hasn't already been set, by Fred Drake · 23 years ago