1997-11-03 |
Guido van Rossum | Doing the most complicated CVS dance I've ever seen... |
commit | commitdiff | tree | snapshot |
1997-11-03 |
Barry Warsaw | Changes in preparation for integrating into the Python... |
commit | commitdiff | tree | snapshot |
1997-10-31 |
Guido van Rossum | Add cast to realloc/malloc call to shut up AIX compiler... |
commit | commitdiff | tree | snapshot |
1997-10-31 |
Guido van Rossum | New policy for package imports: only a directory containing |
commit | commitdiff | tree | snapshot |
1997-10-31 |
Guido van Rossum | Instead of using _PyImport_Inittab[] directly, use... |
commit | commitdiff | tree | snapshot |
1997-10-31 |
Guido van Rossum | Remove the declaration of "internal" table _PyImport_In... |
commit | commitdiff | tree | snapshot |
1997-10-31 |
Guido van Rossum | Add empty __init__.py files to the test packages so... |
commit | commitdiff | tree | snapshot |
1997-10-31 |
Guido van Rossum | Take out the setlocale() call. It affects atof() and... |
commit | commitdiff | tree | snapshot |
1997-10-31 |
Guido van Rossum | Hack suggested by Matthias Klose to pull in all relevan... |
commit | commitdiff | tree | snapshot |
1997-10-31 |
Guido van Rossum | Add #include "mytime.h", needed for SunOS 4.1 (Matthias... |
commit | commitdiff | tree | snapshot |
1997-10-30 |
Guido van Rossum | New version from Sjoerd, small bugfix + optimizations. |
commit | commitdiff | tree | snapshot |
1997-10-29 |
Guido van Rossum | Install Misc/Makefile.pre.in in the config/ install... |
commit | commitdiff | tree | snapshot |
1997-10-27 |
Guido van Rossum | Tests for tokenize.py (Ka-Ping Yee) |
commit | commitdiff | tree | snapshot |
1997-10-27 |
Guido van Rossum | New, fixed version with proper r"..." and R"..." suppor... |
commit | commitdiff | tree | snapshot |
1997-10-27 |
Guido van Rossum | Redone (by Ka-Ping) using the new re module, and adding... |
commit | commitdiff | tree | snapshot |
1997-10-27 |
Guido van Rossum | Small wording change about global and local trace funct... |
commit | commitdiff | tree | snapshot |
1997-10-27 |
Guido van Rossum | This should hopefully finally clean up the remaining... |
commit | commitdiff | tree | snapshot |
1997-10-27 |
Guido van Rossum | Bugfix in match() -- the number of registers shouldn... |
commit | commitdiff | tree | snapshot |
1997-10-26 |
Guido van Rossum | Use __dict__.update(state) instead of for loop over... |
commit | commitdiff | tree | snapshot |
1997-10-24 |
Fred Drake | Ooops, found too more references to old conditions... |
commit | commitdiff | tree | snapshot |
1997-10-24 |
Fred Drake | Removed obsolete discussion on _xdr helper module. |
commit | commitdiff | tree | snapshot |
1997-10-24 |
Guido van Rossum | re -> regex conversions by Sjoerd. |
commit | commitdiff | tree | snapshot |
1997-10-23 |
Guido van Rossum | New module -- converts regex regular expressions to... |
commit | commitdiff | tree | snapshot |
1997-10-23 |
Guido van Rossum | Although it's hard to be sure, I *think* this is a... |
commit | commitdiff | tree | snapshot |
1997-10-23 |
Guido van Rossum | Remove redundant import regsub. |
commit | commitdiff | tree | snapshot |
1997-10-23 |
Guido van Rossum | Daniel Larsson discovered another cut-n-paste bug in... |
commit | commitdiff | tree | snapshot |
1997-10-22 |
Guido van Rossum | Convert all remaining *simple* cases of regex usage... |
commit | commitdiff | tree | snapshot |
1997-10-22 |
Guido van Rossum | Add pcre to the list of safe modules. |
commit | commitdiff | tree | snapshot |
1997-10-22 |
Guido van Rossum | Remove outdated comments. |
commit | commitdiff | tree | snapshot |
1997-10-22 |
Guido van Rossum | Removed some unneeded imports, moved others around. |
commit | commitdiff | tree | snapshot |
1997-10-22 |
Guido van Rossum | Removed unneeded imports of regex and regsub. |
commit | commitdiff | tree | snapshot |
1997-10-22 |
Guido van Rossum | Use re instead of regex. Also remove bogus return... |
commit | commitdiff | tree | snapshot |
1997-10-22 |
Guido van Rossum | Added pgrep() function, which is like grep/egrep/emgrep... |
commit | commitdiff | tree | snapshot |
1997-10-22 |
Guido van Rossum | Deleted this long-obsolete module |
commit | commitdiff | tree | snapshot |
1997-10-22 |
Guido van Rossum | Added "new" symbol defns for RE_ANSI_HEX and RE_NO_GNU_... |
commit | commitdiff | tree | snapshot |
1997-10-22 |
Guido van Rossum | Put {} around \^ in sets to force latex2html to do... |
commit | commitdiff | tree | snapshot |
1997-10-21 |
Guido van Rossum | New CObject from Jim Fulton, adds PyCObject_FromVoidPtr... |
commit | commitdiff | tree | snapshot |
1997-10-21 |
Guido van Rossum | Forgot to add .cxx and .cpp to the second case statement. |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Some patches to Lee Busby's fpectl mods that accidental... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Remove "." or "" from front of sys.path (this bit me... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Catch KeyboardInterrupt separately and propagate it... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Add optional 4th argument to count(), matching find... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Patch by Charles G. Waldman to add optional user and... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Write a str() function for class objects that returns |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Don't use sscanf(s, "%x", &c) to parse \xX... escapes... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Add getintarg(), getlongarg(), getstrarg() to macros... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Add proper (getattrfunc) cast in Pcre_Type. |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Change sharedmodules to lib-dynload. |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Remove .pyo files like .pyc files. |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Rename sharedmodules to lib-dynload. |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Switch around OPT assignments in Don Beaudry's patch... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | AIX notes are simpler -- no need to enable sharedlibs... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | count() now has a 4th parameter too. Also rephrased... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Documented exc_info(); also updated exc_type and last_t... |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Added separate tests for {}.get(). |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Guido van Rossum | Correct Barry's fix -- take care of {}.get(0). |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Barry Warsaw | Added tests of dict.get() |
commit | commitdiff | tree | snapshot |
1997-10-20 |
Barry Warsaw | dict_get(): Fixed a couple of stupid mistakes which... |
commit | commitdiff | tree | snapshot |
1997-10-15 |
Fred Drake | Change Python-as-executable-script example to use ... |
commit | commitdiff | tree | snapshot |
1997-10-14 |
Fred Drake | splitpasswd(): The parameter is named "user", not... |
commit | commitdiff | tree | snapshot |
1997-10-13 |
Fred Drake | Restore the \seealso formatting that got lost when... |
commit | commitdiff | tree | snapshot |
1997-10-13 |
Fred Drake | Add support for ctypedesc, cvardesc, seealso, seemodule... |
commit | commitdiff | tree | snapshot |
1997-10-13 |
Fred Drake | Remove macpath entry -- it is already documented. |
commit | commitdiff | tree | snapshot |
1997-10-13 |
Fred Drake | socket_type ==> SocketType |
commit | commitdiff | tree | snapshot |
1997-10-13 |
Fred Drake | Remove superfluous comman from between "not" and "in... |
commit | commitdiff | tree | snapshot |
1997-10-13 |
Fred Drake | struct _frozen: |
commit | commitdiff | tree | snapshot |
1997-10-10 |
Guido van Rossum | Shared libraries didn't quite work under AIX because... |
commit | commitdiff | tree | snapshot |
1997-10-10 |
Guido van Rossum | Darn. When thread support is disabled, the BEGIN/END... |
commit | commitdiff | tree | snapshot |
1997-10-10 |
Jack Jansen | Updated (but still not up to date) |
commit | commitdiff | tree | snapshot |
1997-10-10 |
Jack Jansen | Build balloon help for EditPythonPrefs |
commit | commitdiff | tree | snapshot |
1997-10-10 |
Jack Jansen | Fixup sys.path to be able to find macostools |
commit | commitdiff | tree | snapshot |
1997-10-10 |
Jack Jansen | 1.5a4 relnotes |
commit | commitdiff | tree | snapshot |
1997-10-10 |
Jack Jansen | Projects used for 1.5a4 |
commit | commitdiff | tree | snapshot |
1997-10-09 |
cvs2svn | This commit was manufactured by cvs2svn to create tag... v1.5a4 |
commit | commitdiff | tree | snapshot |
1997-10-09 |
Guido van Rossum | Final touch -- Don's SGI_ABI patches. |
commit | commitdiff | tree | snapshot |
1997-10-09 |
Guido van Rossum | Don Beaudry's changes to support SGI_ABI on Irix 6.x. |
commit | commitdiff | tree | snapshot |
1997-10-09 |
Fred Drake | Remove requirement for strdup() since it causes so... |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Typo in description of news in errno; added setlocale... |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Add call to setlocale(LC_ALL, ""). |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Add checks for setlocale() and <locale.h> |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Put back the extern declaration for strdup(), between... |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Jack Jansen | 1.5a3 relnotes (1.5a4 to follow later) |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Jack Jansen | Updated for 1.5a4 |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Jack Jansen | Added pcre module |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Jack Jansen | Bug fix for fast module location |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Jack Jansen | Upped version to 1.5a4, changed sys.path initialization... |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | timezone support for macintosh (Jack) |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Include macbuildno.h here (mac only) (Jack) |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | lots of "goto error" replaced by "return" (Jack) |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Converted to new exception style (Jack) |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Mac does support createfilehandler now (Jack) |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Moved mac-specific speedup to a different place (Jack) |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Fixed for WITHOUT_COMPLEX compilation (Jack) |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Open files in binary mode (Jack) |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Use better timer on the mac |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Allow open file as parameter (must be seekable) (Jack) |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Generate new style exception initializer (Jack). |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Ready for the release, I'd say. |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Change test for re.sub() involving g<...> to use a... |
commit | commitdiff | tree | snapshot |
1997-10-08 |
Guido van Rossum | Checking in AMK's latest installement. |
commit | commitdiff | tree | snapshot |
next |