1. 101923b Added replace() implementation by Perry Stoll (debugged and reformatted by me). by Guido van Rossum · 27 years ago
  2. f643e3f Spell Unix, not UNIX. by Guido van Rossum · 27 years ago
  3. e8d94a8 Horrible hack to split up code '--' to prevent by Guido van Rossum · 27 years ago
  4. 1cd26f2 Add complex(). Update int(), long(), float() to support string conversions. by Guido van Rossum · 27 years ago
  5. 740eb82 Add cross-refs for int() to atoi() etc. by Guido van Rossum · 27 years ago
  6. 21aa0ef Changed my mind on replace(). by Guido van Rossum · 27 years ago
  7. aa925a5 Add #! line. by Guido van Rossum · 27 years ago
  8. ab096c9 New doc strings. by Guido van Rossum · 27 years ago
  9. fd79566 Fix two small bugs with proxies. by Guido van Rossum · 27 years ago
  10. a9a3575 New symbols due to assert statement. by Guido van Rossum · 27 years ago
  11. c1a4ba9 New test output for test_builtin by Guido van Rossum · 27 years ago
  12. 3917c22 Win32 precision clock() -- Mark Hammond. by Guido van Rossum · 27 years ago
  13. 9bf8445 Support include statement :-( by Guido van Rossum · 27 years ago
  14. 925e547 Support assert stmt. by Guido van Rossum · 27 years ago
  15. 4669fb4 Several fixes reported by jim F. by Guido van Rossum · 27 years ago
  16. 2a7f58d Allow passing a .pyo file. Print correct name in fatal error from PyErr_Print. by Guido van Rossum · 27 years ago
  17. 228d7f3 Added assert statement. by Guido van Rossum · 27 years ago
  18. 8ecd1ad Added assert grammar. by Guido van Rossum · 27 years ago
  19. 6dacd90 Allow leading underscore in keywords. by Guido van Rossum · 27 years ago
  20. 6fa4466 Added AssertionError. by Guido van Rossum · 27 years ago
  21. 556440d Added __assert__ statement (later to be renamed) by Guido van Rossum · 27 years ago
  22. 659a3b5 Optimized the hell out of listmessages(). by Guido van Rossum · 27 years ago
  23. c054d70 Get rid of .conj pseudo data attribute for complex numbers. by Guido van Rossum · 27 years ago
  24. 94dbd99 Remove ConflictError (which was also removed from bltinmodule.c, even by Guido van Rossum · 27 years ago
  25. 9199f62 remove ConflictError by Guido van Rossum · 27 years ago
  26. 5a35e32 Remove ConflictError, add InteractiveFlag, CObject_Type, FdIsInteractive, and thread entry points. by Guido van Rossum · 27 years ago
  27. c6472e9 1. Add string conversions to int(), long(), float(). (Not to complex()!) by Guido van Rossum · 27 years ago
  28. dddf7a6 Added test of complex() (that catches a bug in 1.4!). by Guido van Rossum · 27 years ago
  29. 8d2893b Added a list of the main undocumented extension modules. by Guido van Rossum · 27 years ago
  30. 7f3b042 Added docs for UserDict,UserList by Guido van Rossum · 27 years ago
  31. b6a8026 Added docs for glob and mailcap by Guido van Rossum · 27 years ago
  32. e6d579d Added docs for glob by Guido van Rossum · 27 years ago
  33. 20af95b Added docs for mailcap by Guido van Rossum · 27 years ago
  34. bfc3944 Change by Andrew Kuchling (edited by Guido): by Guido van Rossum · 27 years ago
  35. 31ef35b Added two new questions about number conversions. by Guido van Rossum · 27 years ago
  36. e5a9c8f As per GvR recomendation, added support for a 'sync' attribute for the by Roger E. Masse · 27 years ago
  37. 1eb9a81 Added new functions replace() and replace1(). by Guido van Rossum · 27 years ago
  38. c8a80cd Added docs for replace() and replace1(). by Guido van Rossum · 27 years ago
  39. 4fc7067 Added a 'sync' method to shelve. If the underlying database does not have a sync by Roger E. Masse · 27 years ago
  40. e8e8799 Remove untrue statement about . and .. being included in list of names by Guido van Rossum · 27 years ago
  41. fb8f1ca Add clear() method to dictionary objects. by Guido van Rossum · 27 years ago
  42. 3ee6b19 Removed 'marshal' from the list of "ok" built-in functions -- the by Guido van Rossum · 27 years ago
  43. bcd91e0 Fix typo (missing $ in ) by Guido van Rossum · 27 years ago
  44. 4d81984 Ping's new version -- more efficient at finding the keywords. by Guido van Rossum · 27 years ago
  45. 3d99e35 Added __assert__. by Guido van Rossum · 27 years ago
  46. eb8c972 Ka-Ping Yee's version is better: by Guido van Rossum · 27 years ago
  47. 90d556f Simple module to publish list of Python keywords. by Guido van Rossum · 27 years ago
  48. f789ee4 Avoid crashes with nested multipart/mixed parts. by Guido van Rossum · 27 years ago
  49. 14d1c72 Added note about adding \n to source for exec and compile. by Guido van Rossum · 27 years ago
  50. 4a908be Added Q. about HTTP/1.1. by Guido van Rossum · 27 years ago
  51. f2e499b New long_lshift, without restriction on size of shift count, by Tim Peters. by Guido van Rossum · 27 years ago
  52. e053c67 Remove err_input -- there is no such global! by Guido van Rossum · 27 years ago
  53. 45b8391 New form of PyFPE_END_PROTECT macro. by Guido van Rossum · 27 years ago
  54. 1aeb104 Include setjmp.h so it compiles if WANT_SIGFPE_HANDLER is undefined. by Guido van Rossum · 27 years ago
  55. f095806 Remove redundant references to thread stuff -- long, long ago, there by Guido van Rossum · 27 years ago
  56. 7427791 Add Macros defining new names for all external symbols. by Guido van Rossum · 27 years ago
  57. 1f06bee Change PyFPE_END_PROTECT to PyFPE_END_PROTECT(v). v should be the by Guido van Rossum · 27 years ago
  58. efd3a3a Implement find_class() without exec statement. by Guido van Rossum · 27 years ago
  59. c6995534 Change the list() function to match the documentation in the comment by Guido van Rossum · 27 years ago
  60. 56d1e3a Added Fred Drake's netrc parser class. by Guido van Rossum · 27 years ago
  61. 18aef3c Support disassembly of a variety of objects through dis.dis(). by Guido van Rossum · 27 years ago
  62. 7b7c578 Add optional 4th argument to [r]find and [r]index (end of slice). by Guido van Rossum · 27 years ago
  63. 612316f Add a rough list of undocumented stuff at the end. by Guido van Rossum · 27 years ago
  64. 1f8cee2 Hint about [\] trick to avoid quad backslashes. by Guido van Rossum · 27 years ago
  65. db5a41f target libinstall: by Fred Drake · 27 years ago
  66. ef8dc06 compile(): Use the __debug__ flag to determine the proper filename extension by Fred Drake · 27 years ago
  67. 6af0c00 Fix dumb bug calling parsestrplus with wrong node as argument. by Guido van Rossum · 27 years ago
  68. 1c6a459 Define __debug__ as 0 if -O is given, 1 otherwise. Also test for by Guido van Rossum · 27 years ago
  69. 7c53111 Added support for ``if __debug__:'' -- if -O is given, this form is by Guido van Rossum · 27 years ago
  70. 0824f63 When -O is given, use ".pyo" instead of ".pyc". by Guido van Rossum · 27 years ago
  71. 80eb3c0 Zap all env vars beginning with PYTHON to prevent an obvious form of attack. by Guido van Rossum · 27 years ago
  72. b5dc5e3 Added support for imaginary constants (e.g. 0j, 1j, 1.0j). by Guido van Rossum · 27 years ago
  73. c43b685 Clarify error message for unexpected keyword parameter. by Guido van Rossum · 27 years ago
  74. 27e280d Restore old behavior of autotest and testall, using regrtest. by Guido van Rossum · 27 years ago
  75. f58ed25 Add "extra-verbose" mode, triggered by specifying two -v flags. In by Guido van Rossum · 27 years ago
  76. e69be3e Much more rigorous testing -- we now try many times, varying in time by Guido van Rossum · 27 years ago
  77. b51eaa1 Fixed doc string, added __version__, fixed 1 bug. by Guido van Rossum · 27 years ago
  78. fc6f533 Ka-Ping's version. by Guido van Rossum · 27 years ago
  79. 19700b6 Add casts to CMPERROR macro to silence SunPro compiler warnings about by Guido van Rossum · 27 years ago
  80. 8259805 Greatly renamed. Not a very thorough job -- I'm going to restructure it anyway. by Guido van Rossum · 27 years ago
  81. 159b77f Add Emacs shell-script directive, SunPro version#, and fix typo by Guido van Rossum · 27 years ago
  82. 53bb550 Solaris and IRIX specific instructions for fpectl. by Guido van Rossum · 27 years ago
  83. f39fc43 A few comment alignment and clarifications. by Guido van Rossum · 27 years ago
  84. 7614da6 Add -O option which sets Py_OptimizeFlag to avoid emitting SET_LINENO. by Guido van Rossum · 27 years ago
  85. e9e4779 Add global Py_OptimizeFlag. by Guido van Rossum · 27 years ago
  86. 8e793d9 Add global Py_OptimizeFlag. SET_LINENO is omitted again unless this is nonzero. by Guido van Rossum · 27 years ago
  87. 3978d75 Added intern() by Guido van Rossum · 27 years ago
  88. 38e2ec4 Added ref to StringIO docs. by Guido van Rossum · 27 years ago
  89. 3ff7317 Correct two typos by Guido van Rossum · 27 years ago
  90. d90e5b1 Fix name of PyObject_GetAttrString by Guido van Rossum · 27 years ago
  91. cda3d7d Added (minimal) StringIO docs. by Guido van Rossum · 27 years ago
  92. 20e4210 Fix up indentation of examples to use 4 spaces instead of tabs. by Guido van Rossum · 27 years ago
  93. 17e973c Remove the list of Python users, replace it with a pointer to the by Guido van Rossum · 27 years ago
  94. 7b6f343 Added new ftp mirror site ftp://ftp.cdrom.com/pub/python/ (Walnut Creek CDROM). by Guido van Rossum · 27 years ago
  95. 827eecd Converted to CW11. by Jack Jansen · 27 years ago
  96. 666212d Make cache-alignment work always (in stead of 50% of the time:-) by Jack Jansen · 27 years ago
  97. c587301 - Changed GestaltEqu.h to Gestalt.h by Jack Jansen · 27 years ago
  98. 4a8c54e - Changed GestaltEqu.h to Gestalt.h by Jack Jansen · 27 years ago
  99. 6a52814 Re-generated from new (CW11) universal headers by Jack Jansen · 27 years ago
  100. fb07f40 (python-font-lock-keywords): Use new convention for installing in mode by Barry Warsaw · 27 years ago