1. 1b0bf9b Ignore SIGXFSZ. by Jeremy Hylton · 22 years ago
  2. 0e87118 _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats. by Tim Peters · 22 years ago
  3. 95de5c1 Move Unicode finalization further down in the chain. Fixes bug #525620. by Marc-André Lemburg · 22 years ago
  4. 7829335 Get rid of another use of PyArg_Parse() by Neal Norwitz · 22 years ago
  5. c24ea08 Disable the parser hacks that enabled the "yield" keyword using a future by Neil Schemenauer · 22 years ago
  6. cfeb3b6 Patch #50002: Display line information for bad \x escapes: by Martin v. Löwis · 22 years ago
  7. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 22 years ago
  8. 0702858 Missing DECREFs when exception is raised in sys.excepthook. by Jeremy Hylton · 23 years ago
  9. 3caca23 SF bug #488514: -Qnew needs work by Tim Peters · 23 years ago
  10. 518ab1c Use PyOS_snprintf instead of sprintf. by Jeremy Hylton · 23 years ago
  11. afeb2a4 PyOS_getsig(), PyOS_setsig(): The minimal amount of work to avoid the by Barry Warsaw · 23 years ago
  12. 9abaf4d SF patch #467455 : Enhanced environment variables, by Toby Dickenson. by Guido van Rossum · 23 years ago
  13. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  14. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  15. f6309e8 Oops. Two fixes for SF bug #422004 are not needed. :-) by Guido van Rossum · 23 years ago
  16. 70d893a Bunchathings: by Guido van Rossum · 23 years ago
  17. 5821bc5 Py_Initialize(): Apply patch by Jürgen Hermann to call by Barry Warsaw · 23 years ago
  18. b857ba2 Refactor future feature handling by Jeremy Hylton · 23 years ago
  19. 92e2d5c Apply SF patch #424554: check for PYTHONDUMPREFS to be set instead of by Guido van Rossum · 23 years ago
  20. 528b7eb - Rename PyType_InitDict() to PyType_Ready(). by Guido van Rossum · 23 years ago
  21. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  22. 7d4bb9f Add -E command line switch (ignore environment variables like PYTHONHOME by Neil Schemenauer · 23 years ago
  23. a1b3a47 PyRun_StringFlags(): forgot to pass the flags on to by Guido van Rossum · 23 years ago
  24. fe2127d Ugly. A pile of new xxxFlags() functions, to communicate to the parser by Tim Peters · 23 years ago
  25. 51d76f1 future.c: insert a cosmetic space. by Tim Peters · 23 years ago
  26. 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago
  27. 464fe3a Temporarily disable the message to stderr. Jeremy will know what to do by Marc-André Lemburg · 23 years ago
  28. 673a4fd Bug fix: compile() called from a nested-scopes-enable Python was not by Jeremy Hylton · 23 years ago
  29. 66e8e86 Finishing touch to Ping's changes. This is a patch that Ping sent me by Guido van Rossum · 23 years ago
  30. 6a12d8d call_sys_exitfunc(): Remove unused variable f. by Fred Drake · 23 years ago
  31. 26fabb0 Allow sys.excepthook and sys.exitfunc to quietly exit with a sys.exit(). by Ka-Ping Yee · 23 years ago
  32. 4131830 Fix memory leak with SyntaxError. (The DECREF was originally hidden by Guido van Rossum · 23 years ago
  33. b5c5132 Add sys.excepthook. by Ka-Ping Yee · 23 years ago
  34. bc32024 Extend support for from __future__ import nested_scopes by Jeremy Hylton · 23 years ago
  35. 9f324e9 Useful future statement support for the interactive interpreter by Jeremy Hylton · 23 years ago
  36. b797f1f Now that Jeremy is asking about this code, it looks really bogus to me, by Fred Drake · 23 years ago
  37. 9f1b993 Print the offending line of code in the traceback for SyntaxErrors by Jeremy Hylton · 23 years ago
  38. 6f5a4ef Bug #132850 unix line terminator on windows. by Tim Peters · 23 years ago
  39. 3e87656 Ugly fix for SF bug 131239 (-x flag busted). by Tim Peters · 23 years ago
  40. 4b38da6 Move a bunch of definitions that were internal to compile.c to by Jeremy Hylton · 23 years ago
  41. d9b9ac8 It's unclear whether PyMarshal_XXX() are part of the public or private API. by Tim Peters · 23 years ago
  42. 384fd10 Bug #128475: mimetools.encode (sometimes) fails when called from a thread. by Tim Peters · 23 years ago
  43. 44a6ff6 Get rid of the initialization of _PyCompareState_Key. by Guido van Rossum · 23 years ago
  44. b8584e0 Fix signed/unsigned wng. Unfortunately, (unsigned char) << int by Tim Peters · 24 years ago
  45. be4c0f5 Recognize pyc files even if they don't end in pyc. by Martin v. Löwis · 24 years ago
  46. 6f25618 Add PyOS_getsig() and PyOS_setsig() -- wrappers around signal() or by Guido van Rossum · 24 years ago
  47. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  48. 399739f PyOS_CheckStack(): Better ANSI'fy this while we're at it. by Fred Drake · 24 years ago
  49. e8de31c Add a comment explaining the return value of PyOS_CheckStack(). by Fred Drake · 24 years ago
  50. e868211 Hard to believe Guido compiled this! Function lacked a return stmt. by Tim Peters · 24 years ago
  51. 0df002c Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(), by Guido van Rossum · 24 years ago
  52. 2f15b25 implements PyOS_CheckStack for Windows and MSVC. this fixes a by Fredrik Lundh · 24 years ago
  53. dc3d606 Fix to [ Bug #111165 ] doc-string removal masked by PYTHONOPTIMIZE by Marc-André Lemburg · 24 years ago
  54. a811a5b Remove the osdefs.h #include; it was not needed in the final version of by Fred Drake · 24 years ago
  55. 83cb797 When raising a SyntaxError, make a best-effort attempt to set the by Fred Drake · 24 years ago
  56. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  57. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  58. cbf630f Include macglue.h for some function prototypes, and renamed a few by Jack Jansen · 24 years ago
  59. 85f3639 Create two new exceptions: IndentationError and TabError. These are by Fred Drake · 24 years ago
  60. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  61. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  62. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  63. 9498806 Add new parser error code, E_OVERFLOW. This error is returned when by Jeremy Hylton · 24 years ago
  64. f242aa0 Py_Initialize(): Now that standard exceptions are builtin, we don't by Barry Warsaw · 24 years ago
  65. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  66. 3ce0964 Py_UseClassExceptionsFlag is deprecated. We keep the C variable for C by Barry Warsaw · 24 years ago
  67. b16d197 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  68. eca4784 Mark Hammond: For Windows debug builds, we now only offer to dump by Guido van Rossum · 24 years ago
  69. 4a3dd2d Fix PR#7 comparisons of recursive objects by Jeremy Hylton · 24 years ago
  70. c94044c Marc-Andre Lemburg: add calls to initialize and finalize Unicode and by Guido van Rossum · 24 years ago
  71. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 24 years ago
  72. 7c85ab8 Marc-Andre Lemburg discovered that the switch from .pyc to .pyo files, by Guido van Rossum · 25 years ago
  73. b6987b1 Alas, get rid of the Win specific hack to ask the user to press Return by Guido van Rossum · 25 years ago
  74. 3d05b1a initmain(): Nailed a memory leak. bimod must be DECREF'd! by Barry Warsaw · 25 years ago
  75. c80baa3 err_input(): Nailed a small memory leak. If the error is E_INTR, the by Barry Warsaw · 25 years ago
  76. 2c1f6be Hack for Windows so that if (1) the exit status is nonzero and (2) we by Guido van Rossum · 26 years ago
  77. 2edcf0d Move the prototype for dump_counts() to before where it is used. by Guido van Rossum · 26 years ago
  78. 562f5b1 Support PYTHONOPTIMIZE variable; by Marc Lemburg. by Guido van Rossum · 26 years ago
  79. 49b5606 Renamed thread.h to pythread.h. by Guido van Rossum · 26 years ago
  80. 2dcfc96 On second though, NEXITFUNCS should be defined here and not in by Guido van Rossum · 26 years ago
  81. 93d2754 Remove redundant definition of NEXITFUNCS. (Reported by Jeff Rush.) by Guido van Rossum · 26 years ago
  82. 53195c1 Don't release the interpreter lock around PyParser_ParseFile(). by Guido van Rossum · 26 years ago
  83. 0ba3536 Add DebugBreak() call to Py_FatalError() for Mark Hammond (only on by Guido van Rossum · 26 years ago
  84. 560e8ad Translate E_INDENT to the clearest error message I can think of. by Guido van Rossum · 26 years ago
  85. bf02fb2 Make sure that the message "Error in sys.exitfunc:" goes to sys.stderr by Guido van Rossum · 26 years ago
  86. 0829c75 Fix the handling of errors in Py_FlushLine() in a few places. by Guido van Rossum · 26 years ago
  87. a61691e Ehm, three unrelated changes. by Guido van Rossum · 26 years ago
  88. 4cc462e It seems obvious that when Py_Finalize() decides that there's nothing by Guido van Rossum · 26 years ago
  89. 1707aad Changed the finalization order again so that the reference count by Guido van Rossum · 27 years ago
  90. ddc3fb5 Apply str() to sys.ps1 or sys.ps2 before using them as a prompt, so by Guido van Rossum · 27 years ago
  91. 858cb73 Two changes (here we go again :-( ). by Guido van Rossum · 27 years ago
  92. 4a1f39a Undo half of the previous change :-( by Guido van Rossum · 27 years ago
  93. 3a44e1b Two independent changes (alas): by Guido van Rossum · 27 years ago
  94. 999e5e9 Initialize Py_UseClassExceptionsFlag to 1. by Guido van Rossum · 27 years ago
  95. aa9606f Fix small omission: with all the new code, sys.exit(None) would print by Guido van Rossum · 27 years ago
  96. 963b871 Py_Initialize(): move the call to _PyImport_FixupExtension() to after by Barry Warsaw · 27 years ago
  97. 2f5f6a2 PyErr_Print(): When printing a class exception, try to dig out the by Barry Warsaw · 27 years ago
  98. d6bf45b Fixed some details of printing the str() of an exception. This fixes by Guido van Rossum · 27 years ago
  99. dcc0c13 Two independent changes (oops): by Guido van Rossum · 27 years ago
  100. 035574d Added Py_UseClassExceptionsFlag, the variable containing the state of by Barry Warsaw · 27 years ago