1. 3120bc3 v1.1; added attribution to Neale Pickett. by Guido van Rossum · 27 years ago
  2. 368e06b Some restructuring. by Guido van Rossum · 27 years ago
  3. 1abbd7f Added vgrindefs. by Guido van Rossum · 27 years ago
  4. 93a47d7 Plucked this from the net. by Guido van Rossum · 27 years ago
  5. f518154 Fix problem discovered by Barry: if you hit ^C to by Guido van Rossum · 27 years ago
  6. c1189eb Separate out a function pystones(loops=LOOPS) which runs the benchmark by Guido van Rossum · 27 years ago
  7. f849291 Add __init__.py to test package. by Guido van Rossum · 27 years ago
  8. 6ae21ad #(py-emacs-features): Fixed typo in docstring. by Barry Warsaw · 27 years ago
  9. b8f1166 (python-font-lock-keywords): Pick up block introducing keywords with by Barry Warsaw · 27 years ago
  10. ef3c891 (python-font-lock-keywords): Fix for consecutive keyword font locking, by Barry Warsaw · 27 years ago
  11. 5e21cb0 (py-emacs-features): Test for working make-temp-name, which is broken by Barry Warsaw · 27 years ago
  12. 2bd358c A nice blurb that Mark Hammond wrote, aimed at Windows users. by Guido van Rossum · 27 years ago
  13. a9ce70f (py-execute-region): Fixed small bug with queuing file for execution by Barry Warsaw · 27 years ago
  14. 2518c67 (mark-python-def-or-class): Renamed to py-mark-def-or-class globally. by Barry Warsaw · 27 years ago
  15. 851e7d5 Got rid of the errorstr dictionary, which is redundant now that by Guido van Rossum · 27 years ago
  16. 4a1f39a Undo half of the previous change :-( by Guido van Rossum · 27 years ago
  17. 6d48c4a (py-backspace-function): New variable. by Barry Warsaw · 27 years ago
  18. a97a3f3 First round of changes, mostly subprocess stuff. by Barry Warsaw · 27 years ago
  19. bfa9f13 islink() returns false, but there is no constant false! Return 0 instead. by Guido van Rossum · 27 years ago
  20. 79b2038 When checking for equality, open the slave file in text mode so it by Guido van Rossum · 27 years ago
  21. 19f4456 Use ``0'' instead of ``None'' to reset the underlying object in close by Guido van Rossum · 27 years ago
  22. 8f3c812 Fix due to Bill Noon for problem discovered by Ken Manheimer: packing by Guido van Rossum · 27 years ago
  23. 25c649f Get rid of another reference to _PyImport_Inittab (now a static array) by Guido van Rossum · 27 years ago
  24. 22348dc The warning about thread still having a frame now only happens in verbose mode. by Guido van Rossum · 27 years ago
  25. 8607ae2 Move the Py_{{BEGIN,END}_ALLOW,BLOCK}_THREADS macros in time_sleep() by Guido van Rossum · 27 years ago
  26. 3a44e1b Two independent changes (alas): by Guido van Rossum · 27 years ago
  27. 7ff20ac Change the signal finialization so that it also resets the signal by Guido van Rossum · 27 years ago
  28. 615022f Doing the most complicated CVS dance I've ever seen. Barry has had by Guido van Rossum · 27 years ago
  29. affc0ca Changes in preparation for integrating into the Python CVS tree. by Barry Warsaw · 27 years ago
  30. 6345ac6 Add cast to realloc/malloc call to shut up AIX compiler. (Vladimir Marangozov) by Guido van Rossum · 27 years ago
  31. 197346f New policy for package imports: only a directory containing by Guido van Rossum · 27 years ago
  32. 771c6c8 Instead of using _PyImport_Inittab[] directly, use the new "official" by Guido van Rossum · 27 years ago
  33. 66959af Remove the declaration of "internal" table _PyImport_Inittab[]; add by Guido van Rossum · 27 years ago
  34. e8d1139 Add empty __init__.py files to the test packages so the new policy by Guido van Rossum · 27 years ago
  35. 873c35c Take out the setlocale() call. It affects atof() and will break by Guido van Rossum · 27 years ago
  36. 3c03fa8 Hack suggested by Matthias Klose to pull in all relevant entry points by Guido van Rossum · 27 years ago
  37. 86aeb90 Add #include "mytime.h", needed for SunOS 4.1 (Matthias Klose). by Guido van Rossum · 27 years ago
  38. 613418a New version from Sjoerd, small bugfix + optimizations. by Guido van Rossum · 27 years ago
  39. e475d86 Install Misc/Makefile.pre.in in the config/ install directory. by Guido van Rossum · 27 years ago
  40. 0874f7f Tests for tokenize.py (Ka-Ping Yee) by Guido van Rossum · 27 years ago
  41. fefc922 New, fixed version with proper r"..." and R"..." support from Ka-Ping. by Guido van Rossum · 27 years ago
  42. 3b63177 Redone (by Ka-Ping) using the new re module, and adding recognition by Guido van Rossum · 27 years ago
  43. 9d37a4d Small wording change about global and local trace functions. by Guido van Rossum · 27 years ago
  44. 036309b This should hopefully finally clean up the remaining __del__ related by Guido van Rossum · 27 years ago
  45. af8d2bf Bugfix in match() -- the number of registers shouldn't be divided by two! by Guido van Rossum · 27 years ago
  46. e6eef4b Use __dict__.update(state) instead of for loop over state.items() and by Guido van Rossum · 27 years ago
  47. 040e565 Ooops, found too more references to old conditions on floating point values. by Fred Drake · 27 years ago
  48. ae18e9f Removed obsolete discussion on _xdr helper module. by Fred Drake · 27 years ago
  49. 31626bc re -> regex conversions by Sjoerd. by Guido van Rossum · 27 years ago
  50. f81e5b9 New module -- converts regex regular expressions to re style. by Guido van Rossum · 27 years ago
  51. 1fef181 Although it's hard to be sure, I *think* this is a working conversion by Guido van Rossum · 27 years ago
  52. 57a68e0 Remove redundant import regsub. by Guido van Rossum · 27 years ago
  53. 2efa34b Daniel Larsson discovered another cut-n-paste bug in the Olimit story... by Guido van Rossum · 27 years ago
  54. 9694fca Convert all remaining *simple* cases of regex usage to re usage. by Guido van Rossum · 27 years ago
  55. 426916e Add pcre to the list of safe modules. by Guido van Rossum · 27 years ago
  56. f7a8b45 Remove outdated comments. by Guido van Rossum · 27 years ago
  57. 12f86ad Removed some unneeded imports, moved others around. by Guido van Rossum · 27 years ago
  58. a8832b4 Removed unneeded imports of regex and regsub. by Guido van Rossum · 27 years ago
  59. acfb82a Use re instead of regex. Also remove bogus return statement from __init__(). by Guido van Rossum · 27 years ago
  60. 8566e47 Added pgrep() function, which is like grep/egrep/emgrep but uses Perl by Guido van Rossum · 27 years ago
  61. b491442 Deleted this long-obsolete module by Guido van Rossum · 27 years ago
  62. 2498620 Added "new" symbol defns for RE_ANSI_HEX and RE_NO_GNU_EXTENSIONS -- by Guido van Rossum · 27 years ago
  63. d7dc2eb Put {} around \^ in sets to force latex2html to do the right thing... by Guido van Rossum · 27 years ago
  64. 1f84449 New CObject from Jim Fulton, adds PyCObject_FromVoidPtrAndDesc() and by Guido van Rossum · 27 years ago
  65. 16cb6f4 Forgot to add .cxx and .cpp to the second case statement. by Guido van Rossum · 27 years ago
  66. e85da65 Some patches to Lee Busby's fpectl mods that accidentally didn't make it by Guido van Rossum · 27 years ago
  67. 9476a78 Remove "." or "" from front of sys.path (this bit me once). by Guido van Rossum · 27 years ago
  68. 4e8ef5f Catch KeyboardInterrupt separately and propagate it, instead of by Guido van Rossum · 27 years ago
  69. 1510565 Add optional 4th argument to count(), matching find() etc. by Guido van Rossum · 27 years ago
  70. dd65975 Patch by Charles G. Waldman to add optional user and password by Guido van Rossum · 27 years ago
  71. 4a2a621 Write a str() function for class objects that returns by Guido van Rossum · 27 years ago
  72. ed1100f Don't use sscanf(s, "%x", &c) to parse \xX... escapes; hardcode it. by Guido van Rossum · 27 years ago
  73. f6a84db Add getintarg(), getlongarg(), getstrarg() to macros since these no by Guido van Rossum · 27 years ago
  74. cb4d303 Add proper (getattrfunc) cast in Pcre_Type. by Guido van Rossum · 27 years ago
  75. 266033e Change sharedmodules to lib-dynload. by Guido van Rossum · 27 years ago
  76. 7eecc24 Remove .pyo files like .pyc files. by Guido van Rossum · 27 years ago
  77. cf809d6 Rename sharedmodules to lib-dynload. by Guido van Rossum · 27 years ago
  78. 304dd2d Switch around OPT assignments in Don Beaudry's patch for Olimit (his by Guido van Rossum · 27 years ago
  79. cbfcb17 AIX notes are simpler -- no need to enable sharedlibs with an edit. by Guido van Rossum · 27 years ago
  80. 828a0bd count() now has a 4th parameter too. Also rephrased the docs for find by Guido van Rossum · 27 years ago
  81. 871cf16 Documented exc_info(); also updated exc_type and last_type docs. by Guido van Rossum · 27 years ago
  82. fb5cef1 Added separate tests for {}.get(). by Guido van Rossum · 27 years ago
  83. 6fcfa72 Correct Barry's fix -- take care of {}.get(0). by Guido van Rossum · 27 years ago
  84. 9b887c7 Added tests of dict.get() by Barry Warsaw · 27 years ago
  85. 320ac33 dict_get(): Fixed a couple of stupid mistakes which caused crashes. by Barry Warsaw · 27 years ago
  86. 9e63faa Change Python-as-executable-script example to use "#! /usr/bin/env python" by Fred Drake · 27 years ago
  87. 654451d splitpasswd(): The parameter is named "user", not "host". by Fred Drake · 27 years ago
  88. 2950b2d Restore the \seealso formatting that got lost when I updated the math by Fred Drake · 27 years ago
  89. 9dcc5a9 Add support for ctypedesc, cvardesc, seealso, seemodule, seetext. by Fred Drake · 27 years ago
  90. 7cd6044 Remove macpath entry -- it is already documented. by Fred Drake · 27 years ago
  91. 5451d67 socket_type ==> SocketType by Fred Drake · 27 years ago
  92. 120ac20 Remove superfluous comman from between "not" and "in" when describing the by Fred Drake · 27 years ago
  93. 36fbe76 struct _frozen: by Fred Drake · 27 years ago
  94. 3b31cd2 Shared libraries didn't quite work under AIX because of the change in by Guido van Rossum · 27 years ago
  95. a59406a Darn. When thread support is disabled, the BEGIN/END macros don't by Guido van Rossum · 27 years ago
  96. 04d5c58 Updated (but still not up to date) by Jack Jansen · 27 years ago
  97. 666ff8c Build balloon help for EditPythonPrefs by Jack Jansen · 27 years ago
  98. bb74862 Fixup sys.path to be able to find macostools by Jack Jansen · 27 years ago
  99. 188db7f 1.5a4 relnotes by Jack Jansen · 27 years ago
  100. ef90af0 Projects used for 1.5a4 by Jack Jansen · 27 years ago