1. a0f0a33 Mac-specific mod to enable aliases on import paths. by Guido van Rossum · 26 years ago
  2. d21744a Apparently on AIX when using gcc you need to call pthread_init() by Guido van Rossum · 26 years ago
  3. a74d0e4 Correct typo in #ifdef: PY_THREAD_D4, should be PY_PTHREAD_D4. by Guido van Rossum · 26 years ago
  4. 746340d Should no longer surround PyOS_Readline() call with by Guido van Rossum · 26 years ago
  5. 44ee479 Add a 'volatile' to the declaration of threadid in get_thread_ident(). by Guido van Rossum · 26 years ago
  6. 53195c1 Don't release the interpreter lock around PyParser_ParseFile(). by Guido van Rossum · 26 years ago
  7. afd3dae __file__ used to be always set to the .pyc (or .pyo) file, even if by Guido van Rossum · 26 years ago
  8. 90f827c Comment out the print statement about underflow. (This only seems to by Guido van Rossum · 26 years ago
  9. 2d1ad39 Add the type of the object to the error message about calling a non-function. by Guido van Rossum · 26 years ago
  10. d0dc5b0 Restructure the file so that it is never empty. No longer needs by Guido van Rossum · 26 years ago
  11. 3293b07 Patch by Mark Hammond to support 64-bit ints on MS platforms. by Guido van Rossum · 26 years ago
  12. ab076fd Ted Horst writes in psa-members@python.org: by Guido van Rossum · 26 years ago
  13. 0ba3536 Add DebugBreak() call to Py_FatalError() for Mark Hammond (only on by Guido van Rossum · 26 years ago
  14. 0506a43 Patch by Just van Rossum that changes how we search for submodules of by Guido van Rossum · 26 years ago
  15. c4099e6 # Fix strange type (methonname instead of methodname). by Guido van Rossum · 26 years ago
  16. 9c241ba Added declarations for Mac code resource modules (Jack Jansen). by Guido van Rossum · 26 years ago
  17. 0f84a34 Added handling for Mac code resource modules (Jack Jansen). by Guido van Rossum · 26 years ago
  18. 40552d0 Gack. The module doc string is too long for VC++ 5.0. by Guido van Rossum · 26 years ago
  19. d807879 Make getversion.o dependent on ../Include/patchlevel.h as well. by Fred Drake · 26 years ago
  20. 1a8791e Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  21. 5053efc In BUILD_LIST, use PyList_SET_ITEM() instead of PyList_SetItem(); and by Guido van Rossum · 26 years ago
  22. 97d9515 PyErr_SetFromErrnoWithFilename(): New function which supports setting by Barry Warsaw · 26 years ago
  23. d086a1a Added support for two new standard errors: EnvironmentError and by Barry Warsaw · 26 years ago
  24. fa4ac71 Small changes to map() and filter(): by Guido van Rossum · 26 years ago
  25. fa00e95 # In case BINARY_SUBSCR, use proper PyList_GET* macros instead of inlining. by Guido van Rossum · 26 years ago
  26. 7859f87 Marc-Andre Lemburg's patch to support instance methods with other by Guido van Rossum · 26 years ago
  27. bb71ab6 Reindented some OS/2 and hpux code that looked ugly or at least inconsistent. by Guido van Rossum · 26 years ago
  28. 233f4b5 Two error messages still used the old name of the functio mkvalue() -- by Guido van Rossum · 26 years ago
  29. e32d153 Sigh. The hack to enable special treatment for errno on SGI machines by Guido van Rossum · 26 years ago
  30. b68cd42 Fix two smal memory leaks discovered by Vadim Chugunov. by Guido van Rossum · 26 years ago
  31. 8ea9f4d Fix a stupid little bug: len() of an unsized returns -1 and leaves an by Guido van Rossum · 26 years ago
  32. 950ff29 Experimental feature: add default argument to getattr(). by Guido van Rossum · 26 years ago
  33. a5e1b00 Windows-specific hack to make sure that when LoadLibrary() is called, by Guido van Rossum · 26 years ago
  34. c3bc31e Added doc strings. Maybe the doc string for the module itself is a bit by Guido van Rossum · 26 years ago
  35. f9d9c6c Added doc strings. by Guido van Rossum · 26 years ago
  36. d9b5208 In raw_input(prompt), make sure that str(prompt) really a string by Guido van Rossum · 26 years ago
  37. 323bf5e Ignore Windows case check for ALL CAPS 8.3 files by Guido van Rossum · 26 years ago
  38. a45cb45 When unmarshalling, add test for negative lengths on strings, tuples by Guido van Rossum · 26 years ago
  39. 9396673 Remove a few unused locals (I love VC++ for this!). by Guido van Rossum · 26 years ago
  40. 7e33c6e Moved cmp_member() to abstract.c, as PySequence_Contains() [with by Guido van Rossum · 26 years ago
  41. 09df08a A bunch of functions are now properly implemented in abstract.c, and by Guido van Rossum · 26 years ago
  42. adf0e43 Trivial little change: when setting a member to an object, hold the by Guido van Rossum · 26 years ago
  43. 9c0afe5 Fix a curious bug: statements like "import sys.time" would succeed, by Guido van Rossum · 26 years ago
  44. 6b07787 Remove use of RTLD_GLOBAL. by Guido van Rossum · 26 years ago
  45. fccfe89 Another veeeeeery old patch... by Guido van Rossum · 26 years ago
  46. 859b16c In debug mode on MS Windows, DLLs are called foo_d.pyd or foo_d.dll. by Guido van Rossum · 26 years ago
  47. 532246e Improved version of patch for HPUX from David Arnold. by Guido van Rossum · 26 years ago
  48. 09cae1f New APIs for embedding applications that want to add their own entries by Guido van Rossum · 26 years ago
  49. ba7cc0c Remove unnecessary PyErr_Clear(). by Guido van Rossum · 26 years ago
  50. 234e260 Since PyDict_GetItem() can't raise an exception any more, there's no by Guido van Rossum · 26 years ago
  51. 2e4c899 DELETE_FAST should issue an exception when the local variable is undefined. by Guido van Rossum · 26 years ago
  52. a890e68 New APIs to write to sys.stdout or sys.stderr using a printf-like interface. by Guido van Rossum · 26 years ago
  53. 1e162d3 Implement round() slightly different, so that for negative ndigits no by Guido van Rossum · 26 years ago
  54. 89df70b Support HPUX 10.20 DCE threads. by Guido van Rossum · 26 years ago
  55. a937d14 Fred's right -- we need PyList_SET_ITEM(). by Guido van Rossum · 26 years ago
  56. 507338e In-line the code in range() to set the list items; there's really no by Guido van Rossum · 26 years ago
  57. 1f74016 Support for OpenBSD :-( by Guido van Rossum · 26 years ago
  58. 111c20b Reject empty module names -- otherwise __import__("") does something weird! by Guido van Rossum · 26 years ago
  59. cecadc4 Move #include <sys/param.h> to before osdefs.h (Donn Cave). by Guido van Rossum · 26 years ago
  60. 8766a77 Comment out a label on an #endif. by Guido van Rossum · 26 years ago
  61. 730806d Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  62. 39b0f89 Address warnings issued by the MSVC++ compiler by Guido van Rossum · 26 years ago
  63. ede0439 /* An extension mechanism to store arbitrary additional per-thread state. by Guido van Rossum · 26 years ago
  64. 560e8ad Translate E_INDENT to the clearest error message I can think of. by Guido van Rossum · 26 years ago
  65. d295f12 Make first raise argument optional by Guido van Rossum · 26 years ago
  66. bf02fb2 Make sure that the message "Error in sys.exitfunc:" goes to sys.stderr by Guido van Rossum · 26 years ago
  67. 6deac7a Make calls into ../PC/frozen_dllmain.c on MS_WIN32. by Guido van Rossum · 26 years ago
  68. f015e18 Add primitive test for frozen package. by Guido van Rossum · 26 years ago
  69. 8f74571 Use a faster way to check for null bytes in the string argument for by Guido van Rossum · 26 years ago
  70. a5568d3 Support for frozen packages, matching the revamped Tools/freeze. by Guido van Rossum · 26 years ago
  71. d65911b Oops -- overuse of dabbrev-expand introduced a strange bug, where by Guido van Rossum · 26 years ago
  72. 75acc9c Add a single Python-wide (!) lock on import. Only one thread at a by Guido van Rossum · 26 years ago
  73. 0829c75 Fix the handling of errors in Py_FlushLine() in a few places. by Guido van Rossum · 26 years ago
  74. 05f9dce Moved clear_carefully() to _PyModule_Clear() in moduleobject.c by Guido van Rossum · 26 years ago
  75. bd36dba Make backup copies of stdin, stdout, stderr as __stdin__, __stdout__, by Guido van Rossum · 26 years ago
  76. aeca79b Small patches to the DJGPP version of check_case(). by Guido van Rossum · 26 years ago
  77. 4d1b3b9 Added DJGPP version of check_case(), by Pit Scrorpion (Hans Nowak). by Guido van Rossum · 26 years ago
  78. 0980bd9 Add case checking feature on import. by Guido van Rossum · 26 years ago
  79. e32bf6e Added PyImport_ExecCodeModuleEx(), which adds an extra parameter to by Guido van Rossum · 26 years ago
  80. 919b83d Set Py_FrozenFlag, to suppress error messages from getpath.c. by Guido van Rossum · 26 years ago
  81. a61691e Ehm, three unrelated changes. by Guido van Rossum · 26 years ago
  82. a0fec2b Two more refinements of the cleanup process. by Guido van Rossum · 26 years ago
  83. 42e8e5d Protect PyErr_Format format string argument from overflow. by Guido van Rossum · 26 years ago
  84. 0d6b49e Protect PyErr_Format format string argument from overflow (ironically, by Guido van Rossum · 26 years ago
  85. 73bacfc Add unistd.h for isatty(). by Guido van Rossum · 26 years ago
  86. 15af20a Better #ifdefs for NetBSD, taking into account that at least on netBSD by Guido van Rossum · 26 years ago
  87. 4cc462e It seems obvious that when Py_Finalize() decides that there's nothing by Guido van Rossum · 26 years ago
  88. 758eec0 Rewritten PyImport_Cleanup() and its helper, clear_carefully(). They by Guido van Rossum · 26 years ago
  89. 8f18320 Last-minute fix for Jim H: don't die after del sys.stdout by Guido van Rossum · 27 years ago
  90. aa06b0e Plug the most annoying recursive printing problem -- reset '_' to None by Guido van Rossum · 27 years ago
  91. 7d4f68c Oops -- '(' is also a legal start character of a new format... by Guido van Rossum · 27 years ago
  92. e8c27bb Oops! Should've renamed dos_8x3 to dos-8x3 here, too. by Guido van Rossum · 27 years ago
  93. 330aafb For base 10, cast unsigned long to long before testing overflow. by Guido van Rossum · 27 years ago
  94. d6af46d Need a cast when comparing type object in isinstance() by Guido van Rossum · 27 years ago
  95. 231a41e Add explicit check for correct next character in format at end of by Guido van Rossum · 27 years ago
  96. 19b55f2 Fix subtle bug in cleanup code in PyErr_NormalizeException(), detected by Guido van Rossum · 27 years ago
  97. 1707aad Changed the finalization order again so that the reference count by Guido van Rossum · 27 years ago
  98. 595d7ba Jeff Rush: add definition for S_IFMT for VisualAge C/C++ under OS2. by Guido van Rossum · 27 years ago
  99. 08052c7 Add the flag RTLD_GLOBAL to the dlopen() options. by Guido van Rossum · 27 years ago
  100. c425d2f Make stdin unbuffered too, when PYTHONUNBUFFERED is specified. by Guido van Rossum · 27 years ago