]> granicus.if.org Git - python/shortlog
python
1997-11-04 Guido van RossumGot rid of the errorstr dictionary, which is redundant...
1997-11-04 Guido van RossumUndo half of the previous change :-(
1997-11-04 Barry Warsaw(py-backspace-function): New variable.
1997-11-04 Barry WarsawFirst round of changes, mostly subprocess stuff.
1997-11-04 Guido van Rossumislink() returns false, but there is no constant false...
1997-11-04 Guido van RossumWhen checking for equality, open the slave file in...
1997-11-04 Guido van RossumUse ``0'' instead of ``None'' to reset the underlying...
1997-11-04 Guido van RossumFix due to Bill Noon for problem discovered by Ken...
1997-11-04 Guido van RossumGet rid of another reference to _PyImport_Inittab ...
1997-11-03 Guido van RossumThe warning about thread still having a frame now only...
1997-11-03 Guido van RossumMove the Py_{{BEGIN,END}_ALLOW,BLOCK}_THREADS macros...
1997-11-03 Guido van RossumTwo independent changes (alas):
1997-11-03 Guido van RossumChange the signal finialization so that it also resets...
1997-11-03 Guido van RossumDoing the most complicated CVS dance I've ever seen...
1997-11-03 Barry WarsawChanges in preparation for integrating into the Python...
1997-10-31 Guido van RossumAdd cast to realloc/malloc call to shut up AIX compiler...
1997-10-31 Guido van RossumNew policy for package imports: only a directory containing
1997-10-31 Guido van RossumInstead of using _PyImport_Inittab[] directly, use...
1997-10-31 Guido van RossumRemove the declaration of "internal" table _PyImport_In...
1997-10-31 Guido van RossumAdd empty __init__.py files to the test packages so...
1997-10-31 Guido van RossumTake out the setlocale() call. It affects atof() and...
1997-10-31 Guido van RossumHack suggested by Matthias Klose to pull in all relevan...
1997-10-31 Guido van RossumAdd #include "mytime.h", needed for SunOS 4.1 (Matthias...
1997-10-30 Guido van RossumNew version from Sjoerd, small bugfix + optimizations.
1997-10-29 Guido van RossumInstall Misc/Makefile.pre.in in the config/ install...
1997-10-27 Guido van RossumTests for tokenize.py (Ka-Ping Yee)
1997-10-27 Guido van RossumNew, fixed version with proper r"..." and R"..." suppor...
1997-10-27 Guido van RossumRedone (by Ka-Ping) using the new re module, and adding...
1997-10-27 Guido van RossumSmall wording change about global and local trace funct...
1997-10-27 Guido van RossumThis should hopefully finally clean up the remaining...
1997-10-27 Guido van RossumBugfix in match() -- the number of registers shouldn...
1997-10-26 Guido van RossumUse __dict__.update(state) instead of for loop over...
1997-10-24 Fred DrakeOoops, found too more references to old conditions...
1997-10-24 Fred DrakeRemoved obsolete discussion on _xdr helper module.
1997-10-24 Guido van Rossumre -> regex conversions by Sjoerd.
1997-10-23 Guido van RossumNew module -- converts regex regular expressions to...
1997-10-23 Guido van RossumAlthough it's hard to be sure, I *think* this is a...
1997-10-23 Guido van RossumRemove redundant import regsub.
1997-10-23 Guido van RossumDaniel Larsson discovered another cut-n-paste bug in...
1997-10-22 Guido van RossumConvert all remaining *simple* cases of regex usage...
1997-10-22 Guido van RossumAdd pcre to the list of safe modules.
1997-10-22 Guido van RossumRemove outdated comments.
1997-10-22 Guido van RossumRemoved some unneeded imports, moved others around.
1997-10-22 Guido van RossumRemoved unneeded imports of regex and regsub.
1997-10-22 Guido van RossumUse re instead of regex. Also remove bogus return...
1997-10-22 Guido van RossumAdded pgrep() function, which is like grep/egrep/emgrep...
1997-10-22 Guido van RossumDeleted this long-obsolete module
1997-10-22 Guido van RossumAdded "new" symbol defns for RE_ANSI_HEX and RE_NO_GNU_...
1997-10-22 Guido van RossumPut {} around \^ in sets to force latex2html to do...
1997-10-21 Guido van RossumNew CObject from Jim Fulton, adds PyCObject_FromVoidPtr...
1997-10-21 Guido van RossumForgot to add .cxx and .cpp to the second case statement.
1997-10-20 Guido van RossumSome patches to Lee Busby's fpectl mods that accidental...
1997-10-20 Guido van RossumRemove "." or "" from front of sys.path (this bit me...
1997-10-20 Guido van RossumCatch KeyboardInterrupt separately and propagate it...
1997-10-20 Guido van RossumAdd optional 4th argument to count(), matching find...
1997-10-20 Guido van RossumPatch by Charles G. Waldman to add optional user and...
1997-10-20 Guido van RossumWrite a str() function for class objects that returns
1997-10-20 Guido van RossumDon't use sscanf(s, "%x", &c) to parse \xX... escapes...
1997-10-20 Guido van RossumAdd getintarg(), getlongarg(), getstrarg() to macros...
1997-10-20 Guido van RossumAdd proper (getattrfunc) cast in Pcre_Type.
1997-10-20 Guido van RossumChange sharedmodules to lib-dynload.
1997-10-20 Guido van RossumRemove .pyo files like .pyc files.
1997-10-20 Guido van RossumRename sharedmodules to lib-dynload.
1997-10-20 Guido van RossumSwitch around OPT assignments in Don Beaudry's patch...
1997-10-20 Guido van RossumAIX notes are simpler -- no need to enable sharedlibs...
1997-10-20 Guido van Rossumcount() now has a 4th parameter too. Also rephrased...
1997-10-20 Guido van RossumDocumented exc_info(); also updated exc_type and last_t...
1997-10-20 Guido van RossumAdded separate tests for {}.get().
1997-10-20 Guido van RossumCorrect Barry's fix -- take care of {}.get(0).
1997-10-20 Barry WarsawAdded tests of dict.get()
1997-10-20 Barry Warsawdict_get(): Fixed a couple of stupid mistakes which...
1997-10-15 Fred DrakeChange Python-as-executable-script example to use ...
1997-10-14 Fred Drakesplitpasswd(): The parameter is named "user", not...
1997-10-13 Fred DrakeRestore the \seealso formatting that got lost when...
1997-10-13 Fred DrakeAdd support for ctypedesc, cvardesc, seealso, seemodule...
1997-10-13 Fred DrakeRemove macpath entry -- it is already documented.
1997-10-13 Fred Drakesocket_type ==> SocketType
1997-10-13 Fred DrakeRemove superfluous comman from between "not" and "in...
1997-10-13 Fred Drakestruct _frozen:
1997-10-10 Guido van RossumShared libraries didn't quite work under AIX because...
1997-10-10 Guido van RossumDarn. When thread support is disabled, the BEGIN/END...
1997-10-10 Jack JansenUpdated (but still not up to date)
1997-10-10 Jack JansenBuild balloon help for EditPythonPrefs
1997-10-10 Jack JansenFixup sys.path to be able to find macostools
1997-10-10 Jack Jansen1.5a4 relnotes
1997-10-10 Jack JansenProjects used for 1.5a4
1997-10-09 cvs2svnThis commit was manufactured by cvs2svn to create tag... v1.5a4
1997-10-09 Guido van RossumFinal touch -- Don's SGI_ABI patches.
1997-10-09 Guido van RossumDon Beaudry's changes to support SGI_ABI on Irix 6.x.
1997-10-09 Fred DrakeRemove requirement for strdup() since it causes so...
1997-10-08 Guido van RossumTypo in description of news in errno; added setlocale...
1997-10-08 Guido van RossumAdd call to setlocale(LC_ALL, "").
1997-10-08 Guido van RossumAdd checks for setlocale() and <locale.h>
1997-10-08 Guido van RossumPut back the extern declaration for strdup(), between...
1997-10-08 Jack Jansen1.5a3 relnotes (1.5a4 to follow later)
1997-10-08 Jack JansenUpdated for 1.5a4
1997-10-08 Jack JansenAdded pcre module
1997-10-08 Jack JansenBug fix for fast module location
1997-10-08 Jack JansenUpped version to 1.5a4, changed sys.path initialization...
1997-10-08 Guido van Rossumtimezone support for macintosh (Jack)
next