summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* Typo in usage message.Guido van Rossum1998-04-131-1/+1
|
* The documentation threatened it would happen -- the functions that shouldFred Drake1998-04-131-35/+97
| | | | have been methods now are! Still available as functions for compatibility.
* Don't allow unescaped newlines in doc strings.Guido van Rossum1998-04-131-2/+1
|
* Added support for pickling ast objects.Fred Drake1998-04-131-14/+65
|
* Module docstring indicated seek() isn't implemented, but it is.Fred Drake1998-04-111-1/+1
|
* Make new gcc -Wall happyGuido van Rossum1998-04-106-14/+29
|
* Address warnings issued by the MSVC++ compilerGuido van Rossum1998-04-102-3/+2
|
* Delete reference to reopmodule.c. Add comment about soundex' obsolescence.Guido van Rossum1998-04-101-2/+1
|
* Delete this obsolete module.Guido van Rossum1998-04-101-1053/+0
|
* Add -t option to set the Py_TabcheckFlag flag.Guido van Rossum1998-04-101-5/+10
|
* Support raise with no parameters.Fred Drake1998-04-101-3/+4
|
* remove C++ entries of the form Class::methodGuido van Rossum1998-04-091-2/+6
|
* Threading speedup patches by Christopher Lindblad <cjl@infoseek.com>.Guido van Rossum1998-04-092-24/+192
|
* Add not_ and __not__.Guido van Rossum1998-04-091-0/+2
|
* AMK's latestGuido van Rossum1998-04-034-90/+168
|
* Use %.17f to format floats/doublesGuido van Rossum1998-04-031-1/+1
|
* Export MPZType -- the type of mpz objects....Fred Drake1998-04-031-1/+9
|
* Check for boundary errors in [r]find -- find("x", "", 2) should return -1.Guido van Rossum1998-03-241-2/+2
|
* patch for re.sub bug, by AMK.Guido van Rossum1998-03-103-6/+7
|
* Check for HAVE_MKTIME (if you don't have it, some tests will fail, butGuido van Rossum1998-03-061-0/+9
| | | | at least the build will now succeed). For Sony NEWS-OS, BSD 4.3 based.
* Don't use setvbuf unless HAVE_SETVBUF is defined.Guido van Rossum1998-03-061-4/+12
|
* Clear class_map in constructor so that when it later detects an errorGuido van Rossum1998-03-061-1/+2
| | | | and the destructor is called early, it doesn't DECREF garbage.
* Raise ValueError: "unconvertible time" when ctime() returns NULL,Guido van Rossum1998-03-031-0/+4
| | | | instead of dumping core.
* Doc strings added by Mitch Chapman.Guido van Rossum1998-03-031-7/+67
|
* Doc strings added by Mitch Chapman.Guido van Rossum1998-03-031-4/+32
|
* Doc strings added by Mitch Chapman.Guido van Rossum1998-03-031-19/+107
| | | | Also got rid of some inconsistent change log comments near the top.
* Looks like mention of http://quest.jpl.nasa.gov/zlib/ got added butKen Manheimer1998-03-031-1/+1
| | | | not checked in, so i'm doing it.
* A bug in PCRE could cause core dumps in patterns such asGuido van Rossum1998-02-201-2/+7
| | | | '((a)*)*'. Andrew Kuchling posted a fix to the string-sig.
* Delete the 'exit' command from the Tcl interpreter -- it would allowGuido van Rossum1998-02-191-0/+3
| | | | | users to exit Python without the normal precautions. (The can do this using os._exit() anyway, but at least that's documented.)
* Forgot to return NULL in joinfields() when a type error was detectedGuido van Rossum1998-02-061-1/+3
| | | | in one of the sequence items.
* Updated URL for zlib.Guido van Rossum1998-02-061-1/+2
|
* Register Tcl_Finalize as a Python exit handler.Guido van Rossum1998-02-061-1/+4
|
* Don't store the exception info from an unhandled exception in a threadGuido van Rossum1998-02-061-1/+1
| | | | | in sys.last_*; it prevents proper calling of destructors of local variables.
* - Use Py_GetPythonHome() instead of getenv("PYTHONHOME").Guido van Rossum1998-02-061-2/+4
| | | | - Don't print error messages when Py_FrozenFlag is set.
* Renamed Jim's PyErr_[JF]Format() to cPickle_ErrFormat(). It's not aGuido van Rossum1998-01-191-11/+10
| | | | standard Python API function so it should not have a Py prefix.
* Instead of a single exists(), differentiate between files, modules,Guido van Rossum1998-01-191-13/+70
| | | | | executable files, and directories. When expecting a module, we also look for the .pyc or .pyo file.
* Add unistd.h for isatty().Guido van Rossum1998-01-191-0/+4
|
* Add LOG_SYSLOG if defined.Guido van Rossum1998-01-191-0/+3
|
* Deleted targets used only by Jim Fulton's now deleted "gMakefile".Guido van Rossum1998-01-131-17/+1
| | | | | | Also change the build rules to use $(LIBRARY) instead of -L.. -lpython$(VERSION) since the latter trips up the SunOS 4.1.x linker (sigh).
* Oops, big glitch. Charles had put a 1 in the column for argument listGuido van Rossum1997-12-301-8/+8
| | | | | | | | type for all functions. However many function call PyArg_Parse() and need a 0. This is so that when they didn't change anything, the can do Py_INCREF(args); return args. Reverted this back. For atof(), there's no reason not to use PyArg_ParseTuple(), so I changed the code (atoi and atol already used that).
* Oops, the last checkin left a blank line in a string literal.Guido van Rossum1997-12-301-1/+1
|
* At Jeff Rush' request, add Py_BEGIN/END_ALLOW_THREADS around call toGuido van Rossum1997-12-291-0/+3
| | | | DosSleep().
* Moved some #ifdefs around that got put in the wrong place by theGuido van Rossum1997-12-291-16/+22
| | | | latest OS/2 patch set.
* Minor editing corrections.Guido van Rossum1997-12-291-5/+6
|
* Added doc string, provided by Charles Waldman (with some reformattingGuido van Rossum1997-12-291-29/+162
| | | | and a little editing my me).
* AMK's latest -- synchronized with PCRE 1.04.Guido van Rossum1997-12-224-125/+179
|
* Oops, left in a non-standard multi-line doc string that GCC finds okayGuido van Rossum1997-12-211-4/+4
| | | | but other compilers don't like.
* Added doc strings, suggested by Charles G. Waldman (but massaged quite a bit).Guido van Rossum1997-12-191-7/+41
|
* Patch by Brian Gallew for DG/UX. I'm not quite sure what it does butGuido van Rossum1997-12-181-2/+3
| | | | | | | | | | | | it seems harmless for other platforms. It plays tricks with the name of the library used to link with. Apparently DG/UX really wants a shared library to link with if it wants shared modules to use symbols from the library. I'm not sure why this wasn't an issue with 1.4; DG/UX seems to be the only platform where moving to a single library made things harder! BTW This adds a target to create libpython$(VERSION).so; however this target is *only* for DG/UX.
* Win32 treatment.Guido van Rossum1997-12-181-2/+7
|