1. 8c5df06 Change the control flow for error handling in the function prelude to by Guido van Rossum · 27 years ago
  2. a424013 Kill all local variables on function return. This closes a gigantic by Guido van Rossum · 27 years ago
  3. 70d4478 Only call sigcheck() at the ticker code if we don't have true signals. by Guido van Rossum · 27 years ago
  4. 1aa1483 Cleanup: by Guido van Rossum · 27 years ago
  5. 7683602 Changes for frame object speedup: by Guido van Rossum · 27 years ago
  6. 3dfd53b Add "if (x != NULL) continue;" (or similar for err==0) before the by Guido van Rossum · 28 years ago
  7. 62f7d15 Use the stack size from the code object and the CO_MAXBLOCKS constant by Guido van Rossum · 28 years ago
  8. 408027e Rename DEBUG macro to Py_DEBUG by Guido van Rossum · 28 years ago
  9. 0aa9ee6 Moved the raise logic out of the main interpreter loop to a separate function. by Guido van Rossum · 28 years ago
  10. 150b2df Change the Don Beaudry hack into the Don B + Jim F hack; now, if *any* by Guido van Rossum · 28 years ago
  11. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  12. 6d43c5d Raise TypeError, not KeyError, on unknown keyword argument. by Guido van Rossum · 28 years ago
  13. bf51afa Don't test here for negative number to float power; that belongs in by Guido van Rossum · 28 years ago
  14. 0dfcf75 Disable support for access statement by Guido van Rossum · 28 years ago
  15. 3b9c667 Better error message if stride used on normal sequence object by Guido van Rossum · 28 years ago
  16. 8861b74 Changes for slice and ellipses by Guido van Rossum · 28 years ago
  17. 3b4da59 Renamed static pow() to powerop() to avoid name conflict in some compilers. by Guido van Rossum · 28 years ago
  18. 8c1e150 Removed some done "to do" items. Changed #ifdef DEBUG slightly. by Guido van Rossum · 28 years ago
  19. 5e3e426 removed sime redundant header includes and decls. by Guido van Rossum · 28 years ago
  20. 50564e8 changes for complex and power (**) operator by Guido van Rossum · 29 years ago
  21. 72b56e8 don't return from main loop when error occurs by Guido van Rossum · 29 years ago
  22. 9d78d8d spell TraceBack with capital B by Guido van Rossum · 29 years ago
  23. e3e61c1 empty kw dict is ok for builtins by Guido van Rossum · 29 years ago
  24. 0db1ef9 fix bogus DECREF in finally clause by Guido van Rossum · 29 years ago
  25. ff8b494 changes for keyword args to built-in functions and classes by Guido van Rossum · 29 years ago
  26. 681d79a keyword arguments and faster calls by Guido van Rossum · 29 years ago
  27. 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
  28. 6f9e433 fix dusty debugging macros by Guido van Rossum · 29 years ago
  29. 684ed98 remove unused code for tp_call by Guido van Rossum · 29 years ago
  30. 8d617a6 various tuple related optimizations; remove unused b/w compat code from ceval.c by Guido van Rossum · 29 years ago
  31. 1d339e8 fix bug in try-finally with class exceptions; declare different func pointers for different uses by Guido van Rossum · 29 years ago
  32. 24c1374 call __import__() with 4 args instead of 1 by Guido van Rossum · 29 years ago
  33. 7f7f274 use Py_CHARMASK by Guido van Rossum · 29 years ago
  34. 6b6e0aa DECREF result of run_string by Guido van Rossum · 29 years ago
  35. a715299 remove unused variable by Guido van Rossum · 29 years ago
  36. 8bf7c48 allow classes as exceptions by Guido van Rossum · 29 years ago
  37. 1919ca7 add missing INCREF in RAISE_EXCEPTION by Guido van Rossum · 30 years ago
  38. b4e7e25 different init for __builtins__ by Guido van Rossum · 30 years ago
  39. 94390ec use getbuiltins() everywhere, it defaults to getbuiltidict() by Guido van Rossum · 30 years ago
  40. 6135a87 __builtins__ mods (and sys_checkinterval for ceval.c) by Guido van Rossum · 30 years ago
  41. 0618651 Use new instancebinop interface by Guido van Rossum · 30 years ago
  42. 6d023c9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  43. 1ae940a Lots of changes, most minor (fatal() instead of abort(), use of by Guido van Rossum · 30 years ago
  44. 69d9eb9 replace abort() calls by fatal() by Guido van Rossum · 30 years ago
  45. 180d7b4 * Python/ceval.c, Include/ceval.h: promote MakePendingCalls to by Guido van Rossum · 30 years ago
  46. a967209 * Python/ceval.c (eval_code): added registry of pending functions by Guido van Rossum · 30 years ago
  47. e59214e call_object: print message before abort() by Guido van Rossum · 30 years ago
  48. 67a5fdb * mpzmodule.c: cast some methods to the proper type. by Guido van Rossum · 31 years ago
  49. c600411 * mpzmodule.c: removed redundant mpz_print function. by Guido van Rossum · 31 years ago
  50. b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
  51. 3bb8a05 Several optimizations and speed improvements. by Sjoerd Mullender · 31 years ago
  52. db3165e * bltinmodule.c: removed exec() built-in function. by Guido van Rossum · 31 years ago
  53. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  54. 9e90a67 * pythonmain.c: -k option, usage message, more environment flags. by Guido van Rossum · 31 years ago
  55. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  56. eb6b33a * classobject.c: in instance_getattr, don't make a method out of a by Guido van Rossum · 31 years ago
  57. b3f7258 * Lots of small changes related to access. by Guido van Rossum · 31 years ago
  58. 81daa32 Access checks now work, at least for instance data (not for methods by Guido van Rossum · 31 years ago
  59. 2583165 Several changes in one: by Guido van Rossum · 31 years ago
  60. 6ac258d * pythonrun.c: Print exception type+arg *after* stack trace instead of by Guido van Rossum · 31 years ago
  61. acbe8da (I suggest a recompile after getting this, the ceval.c bugfix may be crucial!) by Guido van Rossum · 31 years ago
  62. 9575a44 * Microscopic corrections to make things compile on the Cray APP. by Guido van Rossum · 31 years ago
  63. 5b72218 * Fixed some subtleties with fastlocals. You can no longer access by Guido van Rossum · 31 years ago
  64. 8b17d6b Changes to speed up local variables enormously, by avoiding dictionary by Guido van Rossum · 31 years ago
  65. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  66. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  67. 6f5afc9 * ceval.c: ifdef out the last argument passing compat hack. by Guido van Rossum · 31 years ago
  68. 34679b7 * Added Fixcprt.py: script to fix copyright message. by Guido van Rossum · 31 years ago
  69. 775f4da * Makefile: use cp -r to install the library by Guido van Rossum · 32 years ago
  70. ed59d20 Various changes. by Sjoerd Mullender · 32 years ago
  71. 5f59d60 * mymalloc.h: always allocate one extra byte, since some malloc's by Guido van Rossum · 32 years ago
  72. d014ea6 * classobject.c: in instance_lenth, test result of call_object by Guido van Rossum · 32 years ago
  73. a9e7dc1 * bltinmodule.c: added built-in function cmp(a, b) by Guido van Rossum · 32 years ago
  74. 3165fe6 Modified most (but not yet all) I/O to always go through sys.stdout or by Guido van Rossum · 32 years ago
  75. 99bec95 Add some debugging features if DEBUG defined by Guido van Rossum · 32 years ago
  76. f9a2d33 fix *serious* (new) bug in testbool: by default objects should test by Guido van Rossum · 32 years ago
  77. e6eefc2 * classobject.[ch], {float,long,int}object.c, bltinmodule.c: by Guido van Rossum · 32 years ago
  78. 04691fc Changes so that user-defined classes can implement operations invoked by Guido van Rossum · 32 years ago
  79. ff4949e * Makefile: cosmetics by Guido van Rossum · 32 years ago
  80. 1984f1e * Makefile adapted to changes below. by Guido van Rossum · 32 years ago
  81. bd9ccca Test for NULL coming out of err_get() in call_exc_trace() by Guido van Rossum · 32 years ago
  82. 801dcae reverse sense of test for CHECKEXC by Guido van Rossum · 32 years ago
  83. 5b7313a Arg of cmp_outcome becomes an int for portability to the Mac by Guido van Rossum · 32 years ago
  84. eee3fd4 (Hopefully) fix bug in reference count in call_exc_trace() by Guido van Rossum · 32 years ago
  85. 0a066c0 lint (added prototypes for all static fns) by Guido van Rossum · 32 years ago
  86. 9c8d70d New trace implementation; and profile (in a similat vein). by Guido van Rossum · 32 years ago
  87. 299a734 Tighten error handling of string printing. by Guido van Rossum · 32 years ago
  88. 9b1d33b Use correct prototype for invert(). by Guido van Rossum · 32 years ago
  89. 16dfd29 Limit length of name passed to sprintf. by Guido van Rossum · 32 years ago
  90. 8ec25b4 If sys.trace is None, don't trace. For exceptions, only use by Guido van Rossum · 33 years ago
  91. 6a3f9a8 Added UNPACK_VARARG code. by Guido van Rossum · 33 years ago
  92. 96a42c8 User trace feature. by Guido van Rossum · 33 years ago
  93. 626dae7 Fix bug in assign_slice for negative index; used length of wrong object! by Guido van Rossum · 33 years ago
  94. 98256aa Negative subscript are now allowed as in slices. Added ImportError. by Guido van Rossum · 33 years ago
  95. 9c7b861 New argument passing mechanism. by Guido van Rossum · 33 years ago
  96. 32c6cdf Added STORE_GLOBAL and DELETE_GLOBAL. Exceptions may now also be tuples. by Guido van Rossum · 33 years ago
  97. 7928cd7 Added shift and mask ops. by Guido van Rossum · 33 years ago
  98. 7e3090c newclassobject() gets a third argument by Guido van Rossum · 33 years ago
  99. df62e44 Changed many calls to dict stufff to dict2 variants. by Guido van Rossum · 33 years ago
  100. 83bf35c Add interface to call a Python function (or other callable) object from C. by Guido van Rossum · 33 years ago