1. 9498806 Add new parser error code, E_OVERFLOW. This error is returned when by Jeremy Hylton · 24 years ago
  2. f242aa0 Py_Initialize(): Now that standard exceptions are builtin, we don't by Barry Warsaw · 24 years ago
  3. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  4. 3ce0964 Py_UseClassExceptionsFlag is deprecated. We keep the C variable for C by Barry Warsaw · 24 years ago
  5. b16d197 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  6. eca4784 Mark Hammond: For Windows debug builds, we now only offer to dump by Guido van Rossum · 24 years ago
  7. 4a3dd2d Fix PR#7 comparisons of recursive objects by Jeremy Hylton · 24 years ago
  8. c94044c Marc-Andre Lemburg: add calls to initialize and finalize Unicode and by Guido van Rossum · 24 years ago
  9. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 24 years ago
  10. 7c85ab8 Marc-Andre Lemburg discovered that the switch from .pyc to .pyo files, by Guido van Rossum · 25 years ago
  11. b6987b1 Alas, get rid of the Win specific hack to ask the user to press Return by Guido van Rossum · 25 years ago
  12. 3d05b1a initmain(): Nailed a memory leak. bimod must be DECREF'd! by Barry Warsaw · 25 years ago
  13. c80baa3 err_input(): Nailed a small memory leak. If the error is E_INTR, the by Barry Warsaw · 25 years ago
  14. 2c1f6be Hack for Windows so that if (1) the exit status is nonzero and (2) we by Guido van Rossum · 26 years ago
  15. 2edcf0d Move the prototype for dump_counts() to before where it is used. by Guido van Rossum · 26 years ago
  16. 562f5b1 Support PYTHONOPTIMIZE variable; by Marc Lemburg. by Guido van Rossum · 26 years ago
  17. 49b5606 Renamed thread.h to pythread.h. by Guido van Rossum · 26 years ago
  18. 2dcfc96 On second though, NEXITFUNCS should be defined here and not in by Guido van Rossum · 26 years ago
  19. 93d2754 Remove redundant definition of NEXITFUNCS. (Reported by Jeff Rush.) by Guido van Rossum · 26 years ago
  20. 53195c1 Don't release the interpreter lock around PyParser_ParseFile(). by Guido van Rossum · 26 years ago
  21. 0ba3536 Add DebugBreak() call to Py_FatalError() for Mark Hammond (only on by Guido van Rossum · 26 years ago
  22. 560e8ad Translate E_INDENT to the clearest error message I can think of. by Guido van Rossum · 26 years ago
  23. bf02fb2 Make sure that the message "Error in sys.exitfunc:" goes to sys.stderr by Guido van Rossum · 26 years ago
  24. 0829c75 Fix the handling of errors in Py_FlushLine() in a few places. by Guido van Rossum · 26 years ago
  25. a61691e Ehm, three unrelated changes. by Guido van Rossum · 26 years ago
  26. 4cc462e It seems obvious that when Py_Finalize() decides that there's nothing by Guido van Rossum · 26 years ago
  27. 1707aad Changed the finalization order again so that the reference count by Guido van Rossum · 27 years ago
  28. ddc3fb5 Apply str() to sys.ps1 or sys.ps2 before using them as a prompt, so by Guido van Rossum · 27 years ago
  29. 858cb73 Two changes (here we go again :-( ). by Guido van Rossum · 27 years ago
  30. 4a1f39a Undo half of the previous change :-( by Guido van Rossum · 27 years ago
  31. 3a44e1b Two independent changes (alas): by Guido van Rossum · 27 years ago
  32. 999e5e9 Initialize Py_UseClassExceptionsFlag to 1. by Guido van Rossum · 27 years ago
  33. aa9606f Fix small omission: with all the new code, sys.exit(None) would print by Guido van Rossum · 27 years ago
  34. 963b871 Py_Initialize(): move the call to _PyImport_FixupExtension() to after by Barry Warsaw · 27 years ago
  35. 2f5f6a2 PyErr_Print(): When printing a class exception, try to dig out the by Barry Warsaw · 27 years ago
  36. d6bf45b Fixed some details of printing the str() of an exception. This fixes by Guido van Rossum · 27 years ago
  37. dcc0c13 Two independent changes (oops): by Guido van Rossum · 27 years ago
  38. 035574d Added Py_UseClassExceptionsFlag, the variable containing the state of by Barry Warsaw · 27 years ago
  39. 36b8f94 PyErr_Print(): Use PyErr_GivenExceptionMatches() instead of pointer by Barry Warsaw · 27 years ago
  40. e3c0d5e Added new Py_IsInitalized() API function to test the 'initialized' flag. by Guido van Rossum · 27 years ago
  41. aa61505 Use a counter instead of a Boolean to check for initialized; n calls by Guido van Rossum · 27 years ago
  42. cc283f5 Merge Py_Cleanup() into Py_Finalize(). Call the various small Fini() functions. by Guido van Rossum · 27 years ago
  43. 25ce566 The last of the mass checkins for separate (sub)interpreters. by Guido van Rossum · 27 years ago
  44. ad6dfda Moved some stuff here from main.c (part of a big restructuring - wait by Guido van Rossum · 27 years ago
  45. 296b475 Can't return 0 from void function... by Guido van Rossum · 27 years ago
  46. 78a1ed3 Py_FlushLine and PyFile_WriteString now return error indicators by Guido van Rossum · 27 years ago
  47. 23c9446 Added a space in an error message by Guido van Rossum · 27 years ago
  48. b05a5c7 Instead of importing graminit.h whenever one of the three grammar 'root' by Guido van Rossum · 27 years ago
  49. 478e718 Keep MS compiler happy: use (int)strlen() when comparing; make sure by Guido van Rossum · 27 years ago
  50. a027efa Massive changes for separate thread state management. by Guido van Rossum · 27 years ago
  51. 2a7f58d Allow passing a .pyo file. Print correct name in fatal error from PyErr_Print. by Guido van Rossum · 27 years ago
  52. 8259805 Greatly renamed. Not a very thorough job -- I'm going to restructure it anyway. by Guido van Rossum · 27 years ago
  53. 7433b12 Added new global flag variable Py_InteractiveFlag and new function by Guido van Rossum · 27 years ago
  54. 80bb965 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
  55. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  56. 9b38a14 Rationalized MS ifdefs by Guido van Rossum · 28 years ago
  57. ded690f rename printrefs, getobjects to _Py_ prefix by Guido van Rossum · 28 years ago
  58. aae0d32 Use new names for debug macros. Don't include pythonrun.h. by Guido van Rossum · 28 years ago
  59. 4f1c59b Add'l change for NT (Mark H.). by Guido van Rossum · 28 years ago
  60. 66a8977 Moved mac-specific exit handling to macmain.c by Jack Jansen · 29 years ago
  61. 1c45ca3 keep exitfunc alive while calling it by Guido van Rossum · 29 years ago
  62. befa14f #undef argument, for the Mac by Guido van Rossum · 29 years ago
  63. 21eb0b5 mac CW-only fix for messy windows upon exit by Jack Jansen · 29 years ago
  64. 681d79a keyword arguments and faster calls by Guido van Rossum · 29 years ago
  65. 527c264 flush stdout before writing to stderr in print_error() by Guido van Rossum · 29 years ago
  66. 6f9e433 fix dusty debugging macros by Guido van Rossum · 29 years ago
  67. a44823b In NT, write fatal() msg to debugging device by Guido van Rossum · 29 years ago
  68. bd06e96 mac changes: by Jack Jansen · 29 years ago
  69. 262e124 print class name for exceptions that are classes by Guido van Rossum · 29 years ago
  70. 08e767b Under CodeWarrior, make the window go away on exit(0) by Jack Jansen · 29 years ago
  71. 42a5124 Think C mod to suppress pausing at normal exit by Guido van Rossum · 29 years ago
  72. 8ae87c0 make call_pyc_file static by Guido van Rossum · 29 years ago
  73. 94390ec use getbuiltins() everywhere, it defaults to getbuiltidict() by Guido van Rossum · 30 years ago
  74. 6135a87 __builtins__ mods (and sys_checkinterval for ceval.c) by Guido van Rossum · 30 years ago
  75. 6d023c9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  76. 1ae940a Lots of changes, most minor (fatal() instead of abort(), use of by Guido van Rossum · 30 years ago
  77. e00637b Removed extraneous fclose() in case of .pyc file argument by Jack Jansen · 30 years ago
  78. 83dd6c3 * Python/pythonrun.c: add string "Python" to fatal error message by Guido van Rossum · 30 years ago
  79. 798199d * Python/pythonrun.c (print_error): print only last line of by Guido van Rossum · 30 years ago
  80. fdef271 * Import/pythonrun.h, Python/{import,pythonrun}.c, by Guido van Rossum · 30 years ago
  81. 1662dd5 added Py_AtExit() -- register cleanup functions for C modules by Guido van Rossum · 30 years ago
  82. a110aa6 * Python/pythonrun.c (print_error): added INCREF/DECREF pair -- by Guido van Rossum · 30 years ago
  83. b376a4a * timemodule.c: Add hack for Solaris 2. by Guido van Rossum · 31 years ago
  84. b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
  85. a9c3c22 * Extended X interface: pixmap objects, colormap objects visual objects, by Sjoerd Mullender · 31 years ago
  86. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  87. 81daa32 Access checks now work, at least for instance data (not for methods by Guido van Rossum · 31 years ago
  88. 6ac258d * pythonrun.c: Print exception type+arg *after* stack trace instead of by Guido van Rossum · 31 years ago
  89. 5b72218 * Fixed some subtleties with fastlocals. You can no longer access by Guido van Rossum · 31 years ago
  90. 8b17d6b Changes to speed up local variables enormously, by avoiding dictionary by Guido van Rossum · 31 years ago
  91. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  92. a9e7dc1 * bltinmodule.c: added built-in function cmp(a, b) by Guido van Rossum · 32 years ago
  93. 3165fe6 Modified most (but not yet all) I/O to always go through sys.stdout or by Guido van Rossum · 32 years ago
  94. 59bff39 Add sys.exitfunc feature. Make askync non-static. by Guido van Rossum · 32 years ago
  95. f9f2e82 New thread.c from Sjoerd, supports _exit_prog(). Use this in goaway() by Guido van Rossum · 32 years ago
  96. df72a65 To ignore a call, cast it to (void), not to (void *)... by Guido van Rossum · 32 years ago
  97. ff4949e * Makefile: cosmetics by Guido van Rossum · 32 years ago
  98. 1984f1e * Makefile adapted to changes below. by Guido van Rossum · 32 years ago