1. 2e4c899 DELETE_FAST should issue an exception when the local variable is undefined. by Guido van Rossum · 26 years ago
  2. 730806d Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  3. d295f12 Make first raise argument optional by Guido van Rossum · 26 years ago
  4. 8f18320 Last-minute fix for Jim H: don't die after del sys.stdout by Guido van Rossum · 27 years ago
  5. aa06b0e Plug the most annoying recursive printing problem -- reset '_' to None by Guido van Rossum · 27 years ago
  6. df9db1e Give more detailed error message when the argument count isn't right. by Guido van Rossum · 27 years ago
  7. dfed725 Fix memory leak in exec statement with code object -- the None returned by Guido van Rossum · 27 years ago
  8. b74eca9 Change PyEval_SaveThread() and PyEval_RestoreThread() to always do the by Guido van Rossum · 27 years ago
  9. aee0bad First part of package support. by Guido van Rossum · 27 years ago
  10. d7ed683 Inline PyObject_CallObject (Marc-Andre Lemburg). by Guido van Rossum · 27 years ago
  11. eaedc7c eval_code2(), set_exc_info(): Call PyErr_NormalizeException() the by Barry Warsaw · 27 years ago
  12. 9101055 unpack_sequence(): In finally clause, watch out for Py_DECREF by Barry Warsaw · 27 years ago
  13. e42b18f eval_code2(): collapsed the implementations of UNPACK_TUPLE and by Barry Warsaw · 27 years ago
  14. 4249f54 cmp_exception gets promoted (essentially) to the C API function by Barry Warsaw · 27 years ago
  15. cd64965 Reverse the search order for the Don Beaudry hook so that the first by Guido van Rossum · 27 years ago
  16. f9c90c5 Renamed a local label that was accidentally grandly renamed to by Guido van Rossum · 27 years ago
  17. 25ce566 The last of the mass checkins for separate (sub)interpreters. by Guido van Rossum · 27 years ago
  18. 55b9ab5 Extend the "Don Beaudry hack" with "Guido's corollary" -- if the base by Guido van Rossum · 27 years ago
  19. 9cc8a20 Moved PyEval_{Acquire,Release}Thread() to within the same #ifdef by Guido van Rossum · 27 years ago
  20. 2fca21f7 PyEval_SaveThread() and PyEval_RestoreThread() now return/take a by Guido van Rossum · 27 years ago
  21. c12da69 Huge speedup by inlining some common integer operations: by Guido van Rossum · 27 years ago
  22. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  23. be27026 Py_FlushLine and PyFile_WriteString now return error indicators by Guido van Rossum · 27 years ago
  24. df4c308 Plug leak of stack frame object in exception handling code. by Guido van Rossum · 27 years ago
  25. df0d00e Logic for enabling mac-specific signal handling fixed (Jack) by Guido van Rossum · 27 years ago
  26. 5f15b96 (int) cast for strlen() to keep picky compilers happy. by Guido van Rossum · 27 years ago
  27. b05a5c7 Instead of importing graminit.h whenever one of the three grammar 'root' by Guido van Rossum · 27 years ago
  28. fc49073 Used operators from abstract.h where possible (arithmetic operators, by Guido van Rossum · 27 years ago
  29. a027efa Massive changes for separate thread state management. by Guido van Rossum · 27 years ago
  30. b209a11 Quickly renamed. by Guido van Rossum · 27 years ago
  31. c43b685 Clarify error message for unexpected keyword parameter. by Guido van Rossum · 27 years ago
  32. 0d85be1 *Don't* kill all local variables on function exit. This will be done by Guido van Rossum · 27 years ago
  33. deb0c5e Two small changes: by Guido van Rossum · 27 years ago
  34. d0eb429 Plug a leak with calling something other than a function or method is by Guido van Rossum · 27 years ago
  35. 950361c Patches for (two forms of) optional dynamic execution profiling -- by Guido van Rossum · 27 years ago
  36. 8c5df06 Change the control flow for error handling in the function prelude to by Guido van Rossum · 27 years ago
  37. a424013 Kill all local variables on function return. This closes a gigantic by Guido van Rossum · 27 years ago
  38. 70d4478 Only call sigcheck() at the ticker code if we don't have true signals. by Guido van Rossum · 27 years ago
  39. 1aa1483 Cleanup: by Guido van Rossum · 27 years ago
  40. 7683602 Changes for frame object speedup: by Guido van Rossum · 27 years ago
  41. 3dfd53b Add "if (x != NULL) continue;" (or similar for err==0) before the by Guido van Rossum · 27 years ago
  42. 62f7d15 Use the stack size from the code object and the CO_MAXBLOCKS constant by Guido van Rossum · 27 years ago
  43. 408027e Rename DEBUG macro to Py_DEBUG by Guido van Rossum · 28 years ago
  44. 0aa9ee6 Moved the raise logic out of the main interpreter loop to a separate function. by Guido van Rossum · 28 years ago
  45. 150b2df Change the Don Beaudry hack into the Don B + Jim F hack; now, if *any* by Guido van Rossum · 28 years ago
  46. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  47. 6d43c5d Raise TypeError, not KeyError, on unknown keyword argument. by Guido van Rossum · 28 years ago
  48. bf51afa Don't test here for negative number to float power; that belongs in by Guido van Rossum · 28 years ago
  49. 0dfcf75 Disable support for access statement by Guido van Rossum · 28 years ago
  50. 3b9c667 Better error message if stride used on normal sequence object by Guido van Rossum · 28 years ago
  51. 8861b74 Changes for slice and ellipses by Guido van Rossum · 28 years ago
  52. 3b4da59 Renamed static pow() to powerop() to avoid name conflict in some compilers. by Guido van Rossum · 28 years ago
  53. 8c1e150 Removed some done "to do" items. Changed #ifdef DEBUG slightly. by Guido van Rossum · 28 years ago
  54. 5e3e426 removed sime redundant header includes and decls. by Guido van Rossum · 28 years ago
  55. 50564e8 changes for complex and power (**) operator by Guido van Rossum · 28 years ago
  56. 72b56e8 don't return from main loop when error occurs by Guido van Rossum · 29 years ago
  57. 9d78d8d spell TraceBack with capital B by Guido van Rossum · 29 years ago
  58. e3e61c1 empty kw dict is ok for builtins by Guido van Rossum · 29 years ago
  59. 0db1ef9 fix bogus DECREF in finally clause by Guido van Rossum · 29 years ago
  60. ff8b494 changes for keyword args to built-in functions and classes by Guido van Rossum · 29 years ago
  61. 681d79a keyword arguments and faster calls by Guido van Rossum · 29 years ago
  62. f10570b 3rd arg for raise; INCOMPLETE keyword parameter passing (currently f(kw=value) is seen as f('kw', value)) by Guido van Rossum · 29 years ago
  63. 6f9e433 fix dusty debugging macros by Guido van Rossum · 29 years ago
  64. 684ed98 remove unused code for tp_call by Guido van Rossum · 29 years ago
  65. 8d617a6 various tuple related optimizations; remove unused b/w compat code from ceval.c by Guido van Rossum · 29 years ago
  66. 1d339e8 fix bug in try-finally with class exceptions; declare different func pointers for different uses by Guido van Rossum · 29 years ago
  67. 24c1374 call __import__() with 4 args instead of 1 by Guido van Rossum · 29 years ago
  68. 7f7f274 use Py_CHARMASK by Guido van Rossum · 29 years ago
  69. 6b6e0aa DECREF result of run_string by Guido van Rossum · 29 years ago
  70. a715299 remove unused variable by Guido van Rossum · 29 years ago
  71. 8bf7c48 allow classes as exceptions by Guido van Rossum · 29 years ago
  72. 1919ca7 add missing INCREF in RAISE_EXCEPTION by Guido van Rossum · 29 years ago
  73. b4e7e25 different init for __builtins__ by Guido van Rossum · 29 years ago
  74. 94390ec use getbuiltins() everywhere, it defaults to getbuiltidict() by Guido van Rossum · 29 years ago
  75. 6135a87 __builtins__ mods (and sys_checkinterval for ceval.c) by Guido van Rossum · 29 years ago
  76. 0618651 Use new instancebinop interface by Guido van Rossum · 29 years ago
  77. 6d023c9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  78. 1ae940a Lots of changes, most minor (fatal() instead of abort(), use of by Guido van Rossum · 30 years ago
  79. 69d9eb9 replace abort() calls by fatal() by Guido van Rossum · 30 years ago
  80. 180d7b4 * Python/ceval.c, Include/ceval.h: promote MakePendingCalls to by Guido van Rossum · 30 years ago
  81. a967209 * Python/ceval.c (eval_code): added registry of pending functions by Guido van Rossum · 30 years ago
  82. e59214e call_object: print message before abort() by Guido van Rossum · 30 years ago
  83. 67a5fdb * mpzmodule.c: cast some methods to the proper type. by Guido van Rossum · 31 years ago
  84. c600411 * mpzmodule.c: removed redundant mpz_print function. by Guido van Rossum · 31 years ago
  85. b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
  86. 3bb8a05 Several optimizations and speed improvements. by Sjoerd Mullender · 31 years ago
  87. db3165e * bltinmodule.c: removed exec() built-in function. by Guido van Rossum · 31 years ago
  88. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  89. 9e90a67 * pythonmain.c: -k option, usage message, more environment flags. by Guido van Rossum · 31 years ago
  90. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  91. eb6b33a * classobject.c: in instance_getattr, don't make a method out of a by Guido van Rossum · 31 years ago
  92. b3f7258 * Lots of small changes related to access. by Guido van Rossum · 31 years ago
  93. 81daa32 Access checks now work, at least for instance data (not for methods by Guido van Rossum · 31 years ago
  94. 2583165 Several changes in one: by Guido van Rossum · 31 years ago
  95. 6ac258d * pythonrun.c: Print exception type+arg *after* stack trace instead of by Guido van Rossum · 31 years ago
  96. acbe8da (I suggest a recompile after getting this, the ceval.c bugfix may be crucial!) by Guido van Rossum · 31 years ago
  97. 9575a44 * Microscopic corrections to make things compile on the Cray APP. by Guido van Rossum · 31 years ago
  98. 5b72218 * Fixed some subtleties with fastlocals. You can no longer access by Guido van Rossum · 31 years ago
  99. 8b17d6b Changes to speed up local variables enormously, by avoiding dictionary by Guido van Rossum · 31 years ago
  100. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago