1. dcc0c13 Two independent changes (oops): by Guido van Rossum · 27 years ago
  2. 757af0e Removed obsolete exception PyExc_AccessError. by Barry Warsaw · 27 years ago
  3. 035574d Added Py_UseClassExceptionsFlag, the variable containing the state of by Barry Warsaw · 27 years ago
  4. 2d8adff PyErr_NoMemory(): If the pre-instantiated memory exception is non-null by Barry Warsaw · 27 years ago
  5. beef8aa Cprrect stuoid tyops -- was comparing variabes with themselves because by Guido van Rossum · 27 years ago
  6. eaedc7c eval_code2(), set_exc_info(): Call PyErr_NormalizeException() the by Barry Warsaw · 27 years ago
  7. 36b8f94 PyErr_Print(): Use PyErr_GivenExceptionMatches() instead of pointer by Barry Warsaw · 27 years ago
  8. 9101055 unpack_sequence(): In finally clause, watch out for Py_DECREF by Barry Warsaw · 27 years ago
  9. e42b18f eval_code2(): collapsed the implementations of UNPACK_TUPLE and by Barry Warsaw · 27 years ago
  10. 4249f54 cmp_exception gets promoted (essentially) to the C API function by Barry Warsaw · 27 years ago
  11. c0dc92a Three new C API functions: by Barry Warsaw · 27 years ago
  12. cde8b1b Two new built-in functions: issubclass() and isinstance(). Both take by Barry Warsaw · 27 years ago
  13. cd64965 Reverse the search order for the Don Beaudry hook so that the first by Guido van Rossum · 27 years ago
  14. e3c0d5e Added new Py_IsInitalized() API function to test the 'initialized' flag. by Guido van Rossum · 27 years ago
  15. 5f896a4 Added missing newline to warning msg by Guido van Rossum · 27 years ago
  16. aa61505 Use a counter instead of a Boolean to check for initialized; n calls by Guido van Rossum · 27 years ago
  17. 54dec59 set sharedlib extensions properly for NeXT (Ted Horst) by Guido van Rossum · 27 years ago
  18. 7c14103 Keep gcc -Wall happy by Guido van Rossum · 27 years ago
  19. 49b1226 Use _beginthread() and _endthread() in favor of CreateThread() and by Guido van Rossum · 27 years ago
  20. d47a0a8 Added Jim Fulton's PyImport_Import(), which calls whatever by Guido van Rossum · 27 years ago
  21. 741689d Use string interning and caching to get speedups on the mac (Jack). by Guido van Rossum · 27 years ago
  22. e5b4026 Use strerror on the mac if using MSL (Jack). by Guido van Rossum · 27 years ago
  23. 622f73f Remove unised variable by Guido van Rossum · 27 years ago
  24. cc283f5 Merge Py_Cleanup() into Py_Finalize(). Call the various small Fini() functions. by Guido van Rossum · 27 years ago
  25. 085d269 New rules for deleting modules. Rather than having an elaborate by Guido van Rossum · 27 years ago
  26. f9c90c5 Renamed a local label that was accidentally grandly renamed to by Guido van Rossum · 27 years ago
  27. 25ce566 The last of the mass checkins for separate (sub)interpreters. by Guido van Rossum · 27 years ago
  28. 40b33c6 Removed fatal errors from Py_Initmodule4() (and thus from by Guido van Rossum · 27 years ago
  29. 55b9ab5 Extend the "Don Beaudry hack" with "Guido's corollary" -- if the base by Guido van Rossum · 27 years ago
  30. 6fc06e7 Plugged a leak. (The same as the one plugged in compile.c -- forgot by Guido van Rossum · 27 years ago
  31. 275558c Plug a leak in code_dealloc() (and reordered the deallocs to match the by Guido van Rossum · 27 years ago
  32. ef3d02e Removed some variables that are used to exchange data between import.c and by Guido van Rossum · 27 years ago
  33. a941451 frozenmain.c is now also in the library, with entry point Py_FrozenMain(). by Guido van Rossum · 27 years ago
  34. 019db5d Oops -- this contains frozen bytecode, but it was Python 1.4 bytecode! by Guido van Rossum · 27 years ago
  35. 9cc8a20 Moved PyEval_{Acquire,Release}Thread() to within the same #ifdef by Guido van Rossum · 27 years ago
  36. 534ac09 Removed a bunch of extern declarations of functions that are now by Guido van Rossum · 27 years ago
  37. 8fb26ed Make it return a _const_ char*. by Guido van Rossum · 27 years ago
  38. f6ca6aa New build procedure. by Guido van Rossum · 27 years ago
  39. 3768fb1 Tracking changes to Py_Main(): by Guido van Rossum · 27 years ago
  40. ad6dfda Moved some stuff here from main.c (part of a big restructuring - wait by Guido van Rossum · 27 years ago
  41. 0c88e1f Remove confusing usage comments at end. by Guido van Rossum · 27 years ago
  42. 2fca21f7 PyEval_SaveThread() and PyEval_RestoreThread() now return/take a by Guido van Rossum · 27 years ago
  43. c12da69 Huge speedup by inlining some common integer operations: by Guido van Rossum · 27 years ago
  44. b65e85c Fix problem discovered by Greg McFarlane: when an imported module by Guido van Rossum · 27 years ago
  45. db9e20f Fix bug reported by Just: anonymous arguments used for tuples should by Guido van Rossum · 27 years ago
  46. 46ff190 Add default case (standard conformance) to avoid piling up by Guido van Rossum · 27 years ago
  47. 296b475 Can't return 0 from void function... by Guido van Rossum · 27 years ago
  48. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  49. 7e8d26d PyFile_WriteString now returns an error indicator instead of calling by Guido van Rossum · 27 years ago
  50. 78a1ed3 Py_FlushLine and PyFile_WriteString now return error indicators by Guido van Rossum · 27 years ago
  51. be27026 Py_FlushLine and PyFile_WriteString now return error indicators by Guido van Rossum · 27 years ago
  52. 64f9105 DG/UX thread patches (Ross Andrus) by Guido van Rossum · 27 years ago
  53. b2c8ec4 Set sys.executable to full path of python (from argv[0]). by Guido van Rossum · 27 years ago
  54. 23c9446 Added a space in an error message by Guido van Rossum · 27 years ago
  55. f9cba09 Don't use function prototypes in function definition headers. by Guido van Rossum · 27 years ago
  56. 2f75b29 Indent the #error directives so a classic K&R cpp doesn't see them. by Guido van Rossum · 27 years ago
  57. df4c308 Plug leak of stack frame object in exception handling code. by Guido van Rossum · 27 years ago
  58. df0d00e Logic for enabling mac-specific signal handling fixed (Jack) by Guido van Rossum · 27 years ago
  59. 1254d79 Use #ifdef in stead of #if (Jack) by Guido van Rossum · 27 years ago
  60. c8fba8e Add pthred-std define for Linux. by Guido van Rossum · 27 years ago
  61. af5dfb4 One last rename glitch: import_modules -> _PyImport_Modules. by Guido van Rossum · 27 years ago
  62. d6353e2 Support for various versions of the pthread draft. by Guido van Rossum · 27 years ago
  63. 5f15b96 (int) cast for strlen() to keep picky compilers happy. by Guido van Rossum · 27 years ago
  64. b6a7f77 Oops -- missed FloatingPointError in renaming. by Guido van Rossum · 27 years ago
  65. 9a0f04d Get rid of obsolete support for access statement. by Guido van Rossum · 27 years ago
  66. ee2373b Oops, missed some renamings. by Guido van Rossum · 27 years ago
  67. b05a5c7 Instead of importing graminit.h whenever one of the three grammar 'root' by Guido van Rossum · 27 years ago
  68. 666b17a New dir() function -- by Guido van Rossum · 27 years ago
  69. 478e718 Keep MS compiler happy: use (int)strlen() when comparing; make sure by Guido van Rossum · 27 years ago
  70. fc49073 Used operators from abstract.h where possible (arithmetic operators, by Guido van Rossum · 27 years ago
  71. fdf95dd Checkin of Jack's buffer mods. by Guido van Rossum · 27 years ago
  72. 13454c3 Fix old typo PyArgs_VaParse -> PyArg_VaParse. by Guido van Rossum · 27 years ago
  73. a027efa Massive changes for separate thread state management. by Guido van Rossum · 27 years ago
  74. 73237c5 Only use PyCode_Addr2Line to get tb_lineno when Py_OptimizeFlag is set. by Guido van Rossum · 27 years ago
  75. 9218b70 Remove 2 out of 3 __FreeBSD__ tests. by Guido van Rossum · 27 years ago
  76. f4806c2 Add detach call so threads are GC'ed. by Guido van Rossum · 27 years ago
  77. bc2472d Avoid some potential (though unlikely) sprintf buffer overflows. by Guido van Rossum · 27 years ago
  78. 15e33a4 Avoid sprintf buffer overflow if more than 9999 arguments. by Guido van Rossum · 27 years ago
  79. d11bfdd Ugly hack for SGI IRIX 6.2. Apparently _POSIX_THREADS is defined even by Guido van Rossum · 27 years ago
  80. bb5c6f8 Oops, forgot one: inittab. by Guido van Rossum · 27 years ago
  81. 0bac33b Oops, forgot one: inittab. by Guido van Rossum · 27 years ago
  82. 79f25d9 Quickly renamed the remaining files -- this directory is done. by Guido van Rossum · 27 years ago
  83. 65bf9f2 Quickly renamed. by Guido van Rossum · 27 years ago
  84. 373c869 Quickly renamed. Also removed the long comment explaining why this is by Guido van Rossum · 27 years ago
  85. b209a11 Quickly renamed. by Guido van Rossum · 27 years ago
  86. 62cb0ba Moved to ../Modules. by Guido van Rossum · 27 years ago
  87. 58a6ac5 Removed cgensupport.[co] (to ../Modules). by Guido van Rossum · 27 years ago
  88. c474dea Expand one level of symbolic link in sys.argv[0] before inserting its by Guido van Rossum · 27 years ago
  89. 03a7466 OK, ready to make 'assert' a keyword (instead of '__assert__'). by Guido van Rossum · 27 years ago
  90. 7844e38 Keep Microsoft VC happy. by Guido van Rossum · 27 years ago
  91. 6bf62da Keep gcc -Wall and Microsoft VC happy. by Guido van Rossum · 27 years ago
  92. 1d2e240 (Jack:) On the Mac, don't automatically enable dynamic loading. by Guido van Rossum · 27 years ago
  93. 62bf108 (Jack:) Don't define TRUE and FALSE if already defined. by Guido van Rossum · 27 years ago
  94. 6976a52 (Jack:) On the Mac, use standard strerror() if using MSL C-library. by Guido van Rossum · 27 years ago
  95. 644a12b Tweaks to keep the Microsoft compiler quier. by Guido van Rossum · 27 years ago
  96. 5f5e817 Support for alternative string quotes (a"xx", b"xx", c"xx", ...). by Guido van Rossum · 27 years ago
  97. 2a7f58d Allow passing a .pyo file. Print correct name in fatal error from PyErr_Print. by Guido van Rossum · 27 years ago
  98. 228d7f3 Added assert statement. by Guido van Rossum · 27 years ago
  99. 8ecd1ad Added assert grammar. by Guido van Rossum · 27 years ago
  100. c6472e9 1. Add string conversions to int(), long(), float(). (Not to complex()!) by Guido van Rossum · 27 years ago