Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove outdated comments. | Guido van Rossum | 1997-10-22 | 1 | -7/+1 |
| | |||||
* | Removed some unneeded imports, moved others around. | Guido van Rossum | 1997-10-22 | 1 | -4/+2 |
| | |||||
* | Removed unneeded imports of regex and regsub. | Guido van Rossum | 1997-10-22 | 1 | -2/+0 |
| | |||||
* | Use re instead of regex. Also remove bogus return statement from __init__(). | Guido van Rossum | 1997-10-22 | 1 | -6/+8 |
| | |||||
* | Added pgrep() function, which is like grep/egrep/emgrep but uses Perl | Guido van Rossum | 1997-10-22 | 2 | -0/+36 |
| | | | | syntax, by virtue of the new re module. | ||||
* | Deleted this long-obsolete module | Guido van Rossum | 1997-10-22 | 1 | -32/+0 |
| | |||||
* | Added "new" symbol defns for RE_ANSI_HEX and RE_NO_GNU_EXTENSIONS -- | Guido van Rossum | 1997-10-22 | 1 | -0/+6 |
| | | | | hopefully the last maintenance on this module, ever. | ||||
* | Put {} around \^ in sets to force latex2html to do the right thing... | Guido van Rossum | 1997-10-22 | 2 | -6/+6 |
| | |||||
* | New CObject from Jim Fulton, adds PyCObject_FromVoidPtrAndDesc() and | Guido van Rossum | 1997-10-21 | 2 | -2/+66 |
| | | | | PyCObject_GetDesc(). | ||||
* | Forgot to add .cxx and .cpp to the second case statement. | Guido van Rossum | 1997-10-21 | 1 | -0/+2 |
| | | | | Thanks to Daniel Larsson. | ||||
* | Some patches to Lee Busby's fpectl mods that accidentally didn't make it | Guido van Rossum | 1997-10-20 | 3 | -30/+40 |
| | | | | into 1.5a4. | ||||
* | Remove "." or "" from front of sys.path (this bit me once). | Guido van Rossum | 1997-10-20 | 1 | -0/+3 |
| | |||||
* | Catch KeyboardInterrupt separately and propagate it, instead of | Guido van Rossum | 1997-10-20 | 1 | -1/+4 |
| | | | | | | reporting a "crash". Use sys.exc_info() instead of sys.exc_type and sys.exc_value. | ||||
* | Add optional 4th argument to count(), matching find() etc. | Guido van Rossum | 1997-10-20 | 2 | -14/+28 |
| | | | | | | Also change all occurrences of "x == None" to "x is None" (not that it matters much, these functions are all reimplemented in strop -- but count() is not). | ||||
* | Patch by Charles G. Waldman to add optional user and password | Guido van Rossum | 1997-10-20 | 1 | -1/+10 |
| | | | | arguments to NNTP.__init__(), for nntp servers that need them. | ||||
* | Write a str() function for class objects that returns | Guido van Rossum | 1997-10-20 | 1 | -2/+36 |
| | | | | "modulename.classname" instead of returning the same as repr(). | ||||
* | Don't use sscanf(s, "%x", &c) to parse \xX... escapes; hardcode it. | Guido van Rossum | 1997-10-20 | 1 | -3/+10 |
| | |||||
* | Add getintarg(), getlongarg(), getstrarg() to macros since these no | Guido van Rossum | 1997-10-20 | 1 | -0/+3 |
| | | | | longer exist in the general headers. | ||||
* | Add proper (getattrfunc) cast in Pcre_Type. | Guido van Rossum | 1997-10-20 | 1 | -1/+1 |
| | |||||
* | Change sharedmodules to lib-dynload. | Guido van Rossum | 1997-10-20 | 2 | -7/+7 |
| | | | | ### If you still have sharedmodules in your Modules/Setup file, remove it! ### | ||||
* | Remove .pyo files like .pyc files. | Guido van Rossum | 1997-10-20 | 1 | -1/+1 |
| | |||||
* | Rename sharedmodules to lib-dynload. | Guido van Rossum | 1997-10-20 | 1 | -3/+3 |
| | | | | Treat .pyo files like .pyc files. | ||||
* | Switch around OPT assignments in Don Beaudry's patch for Olimit (his | Guido van Rossum | 1997-10-20 | 2 | -7/+7 |
| | | | | | | code had the assignments switched around). Also rename sharedmodules to lib-dynload. | ||||
* | AIX notes are simpler -- no need to enable sharedlibs with an edit. | Guido van Rossum | 1997-10-20 | 1 | -2/+1 |
| | |||||
* | count() now has a 4th parameter too. Also rephrased the docs for find | Guido van Rossum | 1997-10-20 | 2 | -24/+18 |
| | | | | to use the same, better words to explain start/end. | ||||
* | Documented exc_info(); also updated exc_type and last_type docs. | Guido van Rossum | 1997-10-20 | 2 | -36/+114 |
| | |||||
* | Added separate tests for {}.get(). | Guido van Rossum | 1997-10-20 | 1 | -0/+3 |
| | |||||
* | Correct Barry's fix -- take care of {}.get(0). | Guido van Rossum | 1997-10-20 | 1 | -0/+3 |
| | |||||
* | Added tests of dict.get() | Barry Warsaw | 1997-10-20 | 1 | -0/+6 |
| | |||||
* | dict_get(): Fixed a couple of stupid mistakes which caused crashes. | Barry Warsaw | 1997-10-20 | 1 | -8/+2 |
| | | | | Also got rid of some unnecessary code. | ||||
* | Change Python-as-executable-script example to use "#! /usr/bin/env python" | Fred Drake | 1997-10-15 | 2 | -10/+10 |
| | | | | | | | | | since that's now the recommended way to do it. In pickling discussion, change "code{pickle}" (not missing leading "\") to "This" since the immediately preceeding sentence ended with the same text (with the proper "\"). Fixes a formatting bug and an odd glitch in the writing. | ||||
* | splitpasswd(): The parameter is named "user", not "host". | Fred Drake | 1997-10-14 | 1 | -1/+1 |
| | |||||
* | Restore the \seealso formatting that got lost when I updated the math | Fred Drake | 1997-10-13 | 2 | -2/+6 |
| | | | | module documentation. | ||||
* | Add support for ctypedesc, cvardesc, seealso, seemodule, seetext. | Fred Drake | 1997-10-13 | 1 | -0/+47 |
| | | | | This seems to take care of everything but tables and equations. | ||||
* | Remove macpath entry -- it is already documented. | Fred Drake | 1997-10-13 | 2 | -4/+0 |
| | |||||
* | socket_type ==> SocketType | Fred Drake | 1997-10-13 | 2 | -2/+2 |
| | |||||
* | Remove superfluous comman from between "not" and "in" when describing the | Fred Drake | 1997-10-13 | 2 | -2/+2 |
| | | | | "not in" operator. | ||||
* | struct _frozen: | Fred Drake | 1997-10-13 | 2 | -8/+8 |
| | | | | | | | | Use spaces instead of tabs to indent structure definition; tabs don't work in tex/latex. PyImport_FrozenModules: struct _freeze ==> struct _frozen | ||||
* | Shared libraries didn't quite work under AIX because of the change in | Guido van Rossum | 1997-10-10 | 1 | -0/+11 |
| | | | | | status of the GNU readline interface. Here's a patch, by Vladimir Marangozov. | ||||
* | Darn. When thread support is disabled, the BEGIN/END macros don't | Guido van Rossum | 1997-10-10 | 2 | -4/+8 |
| | | | | | | save and restore the tstate, but explicitly calling PyEval_SaveThread() does reset it! While I think about how to fix this for real, here's a fix that avoids getting a fatal error. | ||||
* | Updated (but still not up to date) | Jack Jansen | 1997-10-10 | 1 | -7/+11 |
| | |||||
* | Build balloon help for EditPythonPrefs | Jack Jansen | 1997-10-10 | 2 | -4/+72 |
| | |||||
* | Fixup sys.path to be able to find macostools | Jack Jansen | 1997-10-10 | 1 | -0/+1 |
| | |||||
* | 1.5a4 relnotes | Jack Jansen | 1997-10-10 | 1 | -16/+27 |
| | |||||
* | Projects used for 1.5a4 | Jack Jansen | 1997-10-10 | 11 | -2394/+2442 |
| | |||||
* | This commit was manufactured by cvs2svn to create tag 'r15a4'.v1.5a4 | cvs2svn | 1997-10-09 | 1 | -0/+1 |
| | |||||
* | Final touch -- Don's SGI_ABI patches. | Guido van Rossum | 1997-10-09 | 1 | -0/+4 |
| | |||||
* | Don Beaudry's changes to support SGI_ABI on Irix 6.x. | Guido van Rossum | 1997-10-09 | 4 | -209/+342 |
| | |||||
* | Remove requirement for strdup() since it causes so many troubles for too many | Fred Drake | 1997-10-09 | 1 | -4/+4 |
| | | | | platforms. Argh! | ||||
* | Typo in description of news in errno; added setlocale() call. | Guido van Rossum | 1997-10-08 | 1 | -1/+4 |
| |