- 66959af Remove the declaration of "internal" table _PyImport_Inittab[]; add by Guido van Rossum · 27 years ago
- e8d1139 Add empty __init__.py files to the test packages so the new policy by Guido van Rossum · 27 years ago
- 873c35c Take out the setlocale() call. It affects atof() and will break by Guido van Rossum · 27 years ago
- 3c03fa8 Hack suggested by Matthias Klose to pull in all relevant entry points by Guido van Rossum · 27 years ago
- 86aeb90 Add #include "mytime.h", needed for SunOS 4.1 (Matthias Klose). by Guido van Rossum · 27 years ago
- 613418a New version from Sjoerd, small bugfix + optimizations. by Guido van Rossum · 27 years ago
- e475d86 Install Misc/Makefile.pre.in in the config/ install directory. by Guido van Rossum · 27 years ago
- 0874f7f Tests for tokenize.py (Ka-Ping Yee) by Guido van Rossum · 27 years ago
- fefc922 New, fixed version with proper r"..." and R"..." support from Ka-Ping. by Guido van Rossum · 27 years ago
- 3b63177 Redone (by Ka-Ping) using the new re module, and adding recognition by Guido van Rossum · 27 years ago
- 9d37a4d Small wording change about global and local trace functions. by Guido van Rossum · 27 years ago
- 036309b This should hopefully finally clean up the remaining __del__ related by Guido van Rossum · 27 years ago
- af8d2bf Bugfix in match() -- the number of registers shouldn't be divided by two! by Guido van Rossum · 27 years ago
- e6eef4b Use __dict__.update(state) instead of for loop over state.items() and by Guido van Rossum · 27 years ago
- 040e565 Ooops, found too more references to old conditions on floating point values. by Fred Drake · 27 years ago
- ae18e9f Removed obsolete discussion on _xdr helper module. by Fred Drake · 27 years ago
- 31626bc re -> regex conversions by Sjoerd. by Guido van Rossum · 27 years ago
- f81e5b9 New module -- converts regex regular expressions to re style. by Guido van Rossum · 27 years ago
- 1fef181 Although it's hard to be sure, I *think* this is a working conversion by Guido van Rossum · 27 years ago
- 57a68e0 Remove redundant import regsub. by Guido van Rossum · 27 years ago
- 2efa34b Daniel Larsson discovered another cut-n-paste bug in the Olimit story... by Guido van Rossum · 27 years ago
- 9694fca Convert all remaining *simple* cases of regex usage to re usage. by Guido van Rossum · 27 years ago
- 426916e Add pcre to the list of safe modules. by Guido van Rossum · 27 years ago
- f7a8b45 Remove outdated comments. by Guido van Rossum · 27 years ago
- 12f86ad Removed some unneeded imports, moved others around. by Guido van Rossum · 27 years ago
- a8832b4 Removed unneeded imports of regex and regsub. by Guido van Rossum · 27 years ago
- acfb82a Use re instead of regex. Also remove bogus return statement from __init__(). by Guido van Rossum · 27 years ago
- 8566e47 Added pgrep() function, which is like grep/egrep/emgrep but uses Perl by Guido van Rossum · 27 years ago
- b491442 Deleted this long-obsolete module by Guido van Rossum · 27 years ago
- 2498620 Added "new" symbol defns for RE_ANSI_HEX and RE_NO_GNU_EXTENSIONS -- by Guido van Rossum · 27 years ago
- d7dc2eb Put {} around \^ in sets to force latex2html to do the right thing... by Guido van Rossum · 27 years ago
- 1f84449 New CObject from Jim Fulton, adds PyCObject_FromVoidPtrAndDesc() and by Guido van Rossum · 27 years ago
- 16cb6f4 Forgot to add .cxx and .cpp to the second case statement. by Guido van Rossum · 27 years ago
- e85da65 Some patches to Lee Busby's fpectl mods that accidentally didn't make it by Guido van Rossum · 27 years ago
- 9476a78 Remove "." or "" from front of sys.path (this bit me once). by Guido van Rossum · 27 years ago
- 4e8ef5f Catch KeyboardInterrupt separately and propagate it, instead of by Guido van Rossum · 27 years ago
- 1510565 Add optional 4th argument to count(), matching find() etc. by Guido van Rossum · 27 years ago
- dd65975 Patch by Charles G. Waldman to add optional user and password by Guido van Rossum · 27 years ago
- 4a2a621 Write a str() function for class objects that returns by Guido van Rossum · 27 years ago
- ed1100f Don't use sscanf(s, "%x", &c) to parse \xX... escapes; hardcode it. by Guido van Rossum · 27 years ago
- f6a84db Add getintarg(), getlongarg(), getstrarg() to macros since these no by Guido van Rossum · 27 years ago
- cb4d303 Add proper (getattrfunc) cast in Pcre_Type. by Guido van Rossum · 27 years ago
- 266033e Change sharedmodules to lib-dynload. by Guido van Rossum · 27 years ago
- 7eecc24 Remove .pyo files like .pyc files. by Guido van Rossum · 27 years ago
- cf809d6 Rename sharedmodules to lib-dynload. by Guido van Rossum · 27 years ago
- 304dd2d Switch around OPT assignments in Don Beaudry's patch for Olimit (his by Guido van Rossum · 27 years ago
- cbfcb17 AIX notes are simpler -- no need to enable sharedlibs with an edit. by Guido van Rossum · 27 years ago
- 828a0bd count() now has a 4th parameter too. Also rephrased the docs for find by Guido van Rossum · 27 years ago
- 871cf16 Documented exc_info(); also updated exc_type and last_type docs. by Guido van Rossum · 27 years ago
- fb5cef1 Added separate tests for {}.get(). by Guido van Rossum · 27 years ago
- 6fcfa72 Correct Barry's fix -- take care of {}.get(0). by Guido van Rossum · 27 years ago
- 9b887c7 Added tests of dict.get() by Barry Warsaw · 27 years ago
- 320ac33 dict_get(): Fixed a couple of stupid mistakes which caused crashes. by Barry Warsaw · 27 years ago
- 9e63faa Change Python-as-executable-script example to use "#! /usr/bin/env python" by Fred Drake · 27 years ago
- 654451d splitpasswd(): The parameter is named "user", not "host". by Fred Drake · 27 years ago
- 2950b2d Restore the \seealso formatting that got lost when I updated the math by Fred Drake · 27 years ago
- 9dcc5a9 Add support for ctypedesc, cvardesc, seealso, seemodule, seetext. by Fred Drake · 27 years ago
- 7cd6044 Remove macpath entry -- it is already documented. by Fred Drake · 27 years ago
- 5451d67 socket_type ==> SocketType by Fred Drake · 27 years ago
- 120ac20 Remove superfluous comman from between "not" and "in" when describing the by Fred Drake · 27 years ago
- 36fbe76 struct _frozen: by Fred Drake · 27 years ago
- 3b31cd2 Shared libraries didn't quite work under AIX because of the change in by Guido van Rossum · 27 years ago
- a59406a Darn. When thread support is disabled, the BEGIN/END macros don't by Guido van Rossum · 27 years ago
- 04d5c58 Updated (but still not up to date) by Jack Jansen · 27 years ago
- 666ff8c Build balloon help for EditPythonPrefs by Jack Jansen · 27 years ago
- bb74862 Fixup sys.path to be able to find macostools by Jack Jansen · 27 years ago
- 188db7f 1.5a4 relnotes by Jack Jansen · 27 years ago
- ef90af0 Projects used for 1.5a4 by Jack Jansen · 27 years ago
- 399502c This commit was manufactured by cvs2svn to create tag 'r15a4'. by cvs2svn · 27 years ago
- 9a513ef Final touch -- Don's SGI_ABI patches. by Guido van Rossum · 27 years ago
- 9192267 Don Beaudry's changes to support SGI_ABI on Irix 6.x. by Guido van Rossum · 27 years ago
- d49266e Remove requirement for strdup() since it causes so many troubles for too many by Fred Drake · 27 years ago
- 764a377 Typo in description of news in errno; added setlocale() call. by Guido van Rossum · 27 years ago
- 44c36bb Add call to setlocale(LC_ALL, ""). by Guido van Rossum · 27 years ago
- 9601315 Add checks for setlocale() and <locale.h> by Guido van Rossum · 27 years ago
- 1f14ccf Put back the extern declaration for strdup(), between #ifndef MS_WINDOWS. by Guido van Rossum · 27 years ago
- 9b2681b 1.5a3 relnotes (1.5a4 to follow later) by Jack Jansen · 27 years ago
- 0b72695 Updated for 1.5a4 by Jack Jansen · 27 years ago
- bbaf37c Added pcre module by Jack Jansen · 27 years ago
- 2136490 Bug fix for fast module location by Jack Jansen · 27 years ago
- f774c41 Upped version to 1.5a4, changed sys.path initialization to match new by Jack Jansen · 27 years ago
- e6a4b7b timezone support for macintosh (Jack) by Guido van Rossum · 27 years ago
- 5bd919b Include macbuildno.h here (mac only) (Jack) by Guido van Rossum · 27 years ago
- b189a2f lots of "goto error" replaced by "return" (Jack) by Guido van Rossum · 27 years ago
- 7dbb48a Converted to new exception style (Jack) by Guido van Rossum · 27 years ago
- b010544 Mac does support createfilehandler now (Jack) by Guido van Rossum · 27 years ago
- 9a61dc9 Moved mac-specific speedup to a different place (Jack) by Guido van Rossum · 27 years ago
- ac1fc95 Fixed for WITHOUT_COMPLEX compilation (Jack) by Guido van Rossum · 27 years ago
- 2861f4e Open files in binary mode (Jack) by Guido van Rossum · 27 years ago
- cbf3dd5 Use better timer on the mac Open files in binary mode (Jack) by Guido van Rossum · 27 years ago
- 45ac47c Allow open file as parameter (must be seekable) (Jack) by Guido van Rossum · 27 years ago
- 8450370 Generate new style exception initializer (Jack). by Guido van Rossum · 27 years ago
- c0be2f5 Ready for the release, I'd say. by Guido van Rossum · 27 years ago
- 9ec2ed4 Change test for re.sub() involving g<...> to use a multi-character by Guido van Rossum · 27 years ago
- 5bc5b14 Checking in AMK's latest installement. by Guido van Rossum · 27 years ago
- c386107 Checking in AMK's latest installement. (Two small changes to shup up gcc added.) by Guido van Rossum · 27 years ago
- a7a89eb Implemented nositepython and oldexceptions flags by Jack Jansen · 27 years ago
- c73f83c Fixed for new "import dir.module" semantics. Needs accompanying fix in by Jack Jansen · 27 years ago
- 55e3927 New exception interface by Jack Jansen · 27 years ago
- d2c0ec7 Use `...` around binary strings. by Guido van Rossum · 27 years ago