1. 54dec59 set sharedlib extensions properly for NeXT (Ted Horst) by Guido van Rossum · 27 years ago
  2. 7c14103 Keep gcc -Wall happy by Guido van Rossum · 27 years ago
  3. 49b1226 Use _beginthread() and _endthread() in favor of CreateThread() and by Guido van Rossum · 27 years ago
  4. d47a0a8 Added Jim Fulton's PyImport_Import(), which calls whatever by Guido van Rossum · 27 years ago
  5. 741689d Use string interning and caching to get speedups on the mac (Jack). by Guido van Rossum · 27 years ago
  6. e5b4026 Use strerror on the mac if using MSL (Jack). by Guido van Rossum · 27 years ago
  7. 622f73f Remove unised variable by Guido van Rossum · 27 years ago
  8. cc283f5 Merge Py_Cleanup() into Py_Finalize(). Call the various small Fini() functions. by Guido van Rossum · 27 years ago
  9. 085d269 New rules for deleting modules. Rather than having an elaborate by Guido van Rossum · 27 years ago
  10. f9c90c5 Renamed a local label that was accidentally grandly renamed to by Guido van Rossum · 27 years ago
  11. 25ce566 The last of the mass checkins for separate (sub)interpreters. by Guido van Rossum · 27 years ago
  12. 40b33c6 Removed fatal errors from Py_Initmodule4() (and thus from by Guido van Rossum · 27 years ago
  13. 55b9ab5 Extend the "Don Beaudry hack" with "Guido's corollary" -- if the base by Guido van Rossum · 27 years ago
  14. 6fc06e7 Plugged a leak. (The same as the one plugged in compile.c -- forgot by Guido van Rossum · 27 years ago
  15. 275558c Plug a leak in code_dealloc() (and reordered the deallocs to match the by Guido van Rossum · 27 years ago
  16. ef3d02e Removed some variables that are used to exchange data between import.c and by Guido van Rossum · 27 years ago
  17. a941451 frozenmain.c is now also in the library, with entry point Py_FrozenMain(). by Guido van Rossum · 27 years ago
  18. 019db5d Oops -- this contains frozen bytecode, but it was Python 1.4 bytecode! 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. 534ac09 Removed a bunch of extern declarations of functions that are now by Guido van Rossum · 27 years ago
  21. 8fb26ed Make it return a _const_ char*. by Guido van Rossum · 27 years ago
  22. f6ca6aa New build procedure. by Guido van Rossum · 27 years ago
  23. 3768fb1 Tracking changes to Py_Main(): by Guido van Rossum · 27 years ago
  24. ad6dfda Moved some stuff here from main.c (part of a big restructuring - wait by Guido van Rossum · 27 years ago
  25. 0c88e1f Remove confusing usage comments at end. by Guido van Rossum · 27 years ago
  26. 2fca21f7 PyEval_SaveThread() and PyEval_RestoreThread() now return/take a by Guido van Rossum · 27 years ago
  27. c12da69 Huge speedup by inlining some common integer operations: by Guido van Rossum · 27 years ago
  28. b65e85c Fix problem discovered by Greg McFarlane: when an imported module by Guido van Rossum · 27 years ago
  29. db9e20f Fix bug reported by Just: anonymous arguments used for tuples should by Guido van Rossum · 27 years ago
  30. 46ff190 Add default case (standard conformance) to avoid piling up by Guido van Rossum · 27 years ago
  31. 296b475 Can't return 0 from void function... by Guido van Rossum · 27 years ago
  32. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  33. 7e8d26d PyFile_WriteString now returns an error indicator instead of calling by Guido van Rossum · 27 years ago
  34. 78a1ed3 Py_FlushLine and PyFile_WriteString now return error indicators by Guido van Rossum · 27 years ago
  35. be27026 Py_FlushLine and PyFile_WriteString now return error indicators by Guido van Rossum · 27 years ago
  36. 64f9105 DG/UX thread patches (Ross Andrus) by Guido van Rossum · 27 years ago
  37. b2c8ec4 Set sys.executable to full path of python (from argv[0]). by Guido van Rossum · 27 years ago
  38. 23c9446 Added a space in an error message by Guido van Rossum · 27 years ago
  39. f9cba09 Don't use function prototypes in function definition headers. by Guido van Rossum · 27 years ago
  40. 2f75b29 Indent the #error directives so a classic K&R cpp doesn't see them. by Guido van Rossum · 27 years ago
  41. df4c308 Plug leak of stack frame object in exception handling code. by Guido van Rossum · 27 years ago
  42. df0d00e Logic for enabling mac-specific signal handling fixed (Jack) by Guido van Rossum · 27 years ago
  43. 1254d79 Use #ifdef in stead of #if (Jack) by Guido van Rossum · 27 years ago
  44. c8fba8e Add pthred-std define for Linux. by Guido van Rossum · 27 years ago
  45. af5dfb4 One last rename glitch: import_modules -> _PyImport_Modules. by Guido van Rossum · 27 years ago
  46. d6353e2 Support for various versions of the pthread draft. by Guido van Rossum · 27 years ago
  47. 5f15b96 (int) cast for strlen() to keep picky compilers happy. by Guido van Rossum · 27 years ago
  48. b6a7f77 Oops -- missed FloatingPointError in renaming. by Guido van Rossum · 27 years ago
  49. 9a0f04d Get rid of obsolete support for access statement. by Guido van Rossum · 27 years ago
  50. ee2373b Oops, missed some renamings. by Guido van Rossum · 27 years ago
  51. b05a5c7 Instead of importing graminit.h whenever one of the three grammar 'root' by Guido van Rossum · 27 years ago
  52. 666b17a New dir() function -- by Guido van Rossum · 27 years ago
  53. 478e718 Keep MS compiler happy: use (int)strlen() when comparing; make sure by Guido van Rossum · 27 years ago
  54. fc49073 Used operators from abstract.h where possible (arithmetic operators, by Guido van Rossum · 27 years ago
  55. fdf95dd Checkin of Jack's buffer mods. by Guido van Rossum · 27 years ago
  56. 13454c3 Fix old typo PyArgs_VaParse -> PyArg_VaParse. by Guido van Rossum · 27 years ago
  57. a027efa Massive changes for separate thread state management. by Guido van Rossum · 27 years ago
  58. 73237c5 Only use PyCode_Addr2Line to get tb_lineno when Py_OptimizeFlag is set. by Guido van Rossum · 27 years ago
  59. 9218b70 Remove 2 out of 3 __FreeBSD__ tests. by Guido van Rossum · 27 years ago
  60. f4806c2 Add detach call so threads are GC'ed. by Guido van Rossum · 27 years ago
  61. bc2472d Avoid some potential (though unlikely) sprintf buffer overflows. by Guido van Rossum · 27 years ago
  62. 15e33a4 Avoid sprintf buffer overflow if more than 9999 arguments. by Guido van Rossum · 27 years ago
  63. d11bfdd Ugly hack for SGI IRIX 6.2. Apparently _POSIX_THREADS is defined even by Guido van Rossum · 27 years ago
  64. bb5c6f8 Oops, forgot one: inittab. by Guido van Rossum · 27 years ago
  65. 0bac33b Oops, forgot one: inittab. by Guido van Rossum · 27 years ago
  66. 79f25d9 Quickly renamed the remaining files -- this directory is done. by Guido van Rossum · 27 years ago
  67. 65bf9f2 Quickly renamed. by Guido van Rossum · 27 years ago
  68. 373c869 Quickly renamed. Also removed the long comment explaining why this is by Guido van Rossum · 27 years ago
  69. b209a11 Quickly renamed. by Guido van Rossum · 27 years ago
  70. 62cb0ba Moved to ../Modules. by Guido van Rossum · 27 years ago
  71. 58a6ac5 Removed cgensupport.[co] (to ../Modules). by Guido van Rossum · 27 years ago
  72. c474dea Expand one level of symbolic link in sys.argv[0] before inserting its by Guido van Rossum · 27 years ago
  73. 03a7466 OK, ready to make 'assert' a keyword (instead of '__assert__'). by Guido van Rossum · 27 years ago
  74. 7844e38 Keep Microsoft VC happy. by Guido van Rossum · 27 years ago
  75. 6bf62da Keep gcc -Wall and Microsoft VC happy. by Guido van Rossum · 27 years ago
  76. 1d2e240 (Jack:) On the Mac, don't automatically enable dynamic loading. by Guido van Rossum · 27 years ago
  77. 62bf108 (Jack:) Don't define TRUE and FALSE if already defined. by Guido van Rossum · 27 years ago
  78. 6976a52 (Jack:) On the Mac, use standard strerror() if using MSL C-library. by Guido van Rossum · 27 years ago
  79. 644a12b Tweaks to keep the Microsoft compiler quier. by Guido van Rossum · 27 years ago
  80. 5f5e817 Support for alternative string quotes (a"xx", b"xx", c"xx", ...). by Guido van Rossum · 27 years ago
  81. 2a7f58d Allow passing a .pyo file. Print correct name in fatal error from PyErr_Print. by Guido van Rossum · 27 years ago
  82. 228d7f3 Added assert statement. by Guido van Rossum · 27 years ago
  83. 8ecd1ad Added assert grammar. by Guido van Rossum · 27 years ago
  84. c6472e9 1. Add string conversions to int(), long(), float(). (Not to complex()!) by Guido van Rossum · 27 years ago
  85. 45b8391 New form of PyFPE_END_PROTECT macro. by Guido van Rossum · 27 years ago
  86. 6af0c00 Fix dumb bug calling parsestrplus with wrong node as argument. by Guido van Rossum · 27 years ago
  87. 1c6a459 Define __debug__ as 0 if -O is given, 1 otherwise. Also test for by Guido van Rossum · 27 years ago
  88. 7c53111 Added support for ``if __debug__:'' -- if -O is given, this form is by Guido van Rossum · 27 years ago
  89. 0824f63 When -O is given, use ".pyo" instead of ".pyc". by Guido van Rossum · 27 years ago
  90. c43b685 Clarify error message for unexpected keyword parameter. by Guido van Rossum · 27 years ago
  91. 8259805 Greatly renamed. Not a very thorough job -- I'm going to restructure it anyway. by Guido van Rossum · 27 years ago
  92. 8e793d9 Add global Py_OptimizeFlag. SET_LINENO is omitted again unless this is nonzero. by Guido van Rossum · 27 years ago
  93. 0ae748d Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 27 years ago
  94. 0f4bbd2 Keep gcc -Wall happy. by Guido van Rossum · 27 years ago
  95. 2dc4661 Oops, remove an unused variable from PyErr_Format(). by Guido van Rossum · 27 years ago
  96. 7433b12 Added new global flag variable Py_InteractiveFlag and new function by Guido van Rossum · 27 years ago
  97. 1548bac Added convenience function PyErr_Format(exception, formatstring, ...) -> NULL. by Guido van Rossum · 27 years ago
  98. 0d85be1 *Don't* kill all local variables on function exit. This will be done by Guido van Rossum · 27 years ago
  99. e8811f8 Added intern() function. by Guido van Rossum · 27 years ago
  100. deb0c5e Two small changes: by Guido van Rossum · 28 years ago