Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Ignore whitespace between formats (not internal to a count+format). | Guido van Rossum | 1997-08-26 | 1 | -0/+7 |
| | |||||
* | Add unsupported variable EXE which can be set to .exe on systems where | Guido van Rossum | 1997-08-22 | 1 | -1/+4 |
| | | | | | | the executable must have that suffix. Note that there is no corresponding support in the top-level Makefile because I'm not sure that the install targets there make sense under these circumstances. | ||||
* | Added configuration tests for presence of alarm(), pause(), and getpwent() | Guido van Rossum | 1997-08-22 | 2 | -4/+8 |
| | |||||
* | Removed JF's dollar-Log-dollar RCS turd that caused compilation to | Barry Warsaw | 1997-08-21 | 1 | -52/+0 |
| | | | | | crash due to GvR's last check in message :-). Will try to convince JF to remove all this evilness. | ||||
* | Remove redundant decl for PyOS_InputHook. | Guido van Rossum | 1997-08-21 | 1 | -3/+0 |
| | |||||
* | Added /**/ around #end tags | Guido van Rossum | 1997-08-21 | 2 | -2/+5 |
| | |||||
* | Must remove conflicting files from archive | Guido van Rossum | 1997-08-21 | 1 | -4/+6 |
| | | | | | *before* adding signalmodule.o, because some ar programs are too smart for us... | ||||
* | Globally renamed join() to joinpath() to avoid compilation error on Cray. | Guido van Rossum | 1997-08-20 | 1 | -22/+22 |
| | |||||
* | Renamed strndup to pystrndup, to avoid conflicting prototype | Guido van Rossum | 1997-08-20 | 1 | -5/+9 |
| | | | | in GNU libc on some platforms. | ||||
* | When we have signalmodule.o, remove intrcheck.o as well as sigcheck.o. | Guido van Rossum | 1997-08-20 | 1 | -3/+4 |
| | |||||
* | Alas, the thread support for Tk didn't work. Withdraw it, until I | Guido van Rossum | 1997-08-19 | 1 | -0/+4 |
| | | | | figure out how to do this right. | ||||
* | Moved inclusion of PURIFY in LINKCC to configure | Guido van Rossum | 1997-08-18 | 1 | -1/+1 |
| | |||||
* | Casts by Jack to shut up the Mac compiler. | Guido van Rossum | 1997-08-18 | 4 | -32/+32 |
| | |||||
* | DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with | Guido van Rossum | 1997-08-18 | 1 | -3/+0 |
| | | | | Tk 8.0; this was a mistake. | ||||
* | When making all, don't make sharedmods. That's now called separately | Guido van Rossum | 1997-08-18 | 1 | -1/+1 |
| | | | | from the toplevel Makefile. (For AIX, but doesn't hurt elsewhere.) | ||||
* | Use a trick to make the test for GMP v2 to work when GMP v1 defines | Guido van Rossum | 1997-08-17 | 1 | -1/+1 |
| | | | | | __GNU_MP__ as empty: #if __GNU_MP__ + 0 == 2 (Untested.) | ||||
* | Different strategy regarding whether to declare getrusage() and | Guido van Rossum | 1997-08-17 | 1 | -11/+9 |
| | | | | | | getpagesize() -- #ifdef doesn't work, Linux has conflicting decls in its headers. Choice: only declare the return type, not the argument prototype, and not on Linux. | ||||
* | Last minute changes for \B. AMK. | Guido van Rossum | 1997-08-15 | 1 | -2/+2 |
| | |||||
* | Keep gcc -Wall happy | Guido van Rossum | 1997-08-15 | 3 | -2/+2 |
| | |||||
* | Added std copyright notice. | Guido van Rossum | 1997-08-15 | 1 | -0/+31 |
| | |||||
* | Fixed refcount bug (thank you, Purify and AMK). | Guido van Rossum | 1997-08-14 | 1 | -0/+1 |
| | |||||
* | Several bug fixes. | Jeremy Hylton | 1997-08-14 | 1 | -52/+70 |
| | | | | | | | | -- initialize length to DEFAULTALLOC and not 0 -- resize string before returning (to remove '\000' padding) Also converted some compression routines to use PyString instead of buffer. | ||||
* | Added a bunch of XXX comments about things I'd like to see changed... | Guido van Rossum | 1997-08-14 | 1 | -1/+8 |
| | |||||
* | Merge Mac and Windows mods (which mostly affect the same problem -- no | Guido van Rossum | 1997-08-14 | 1 | -9/+32 |
| | | | | | usable createfilehandler). Define HAVE_CREATEFILEHANDLER to test later. Also other Mac specific patches by Jack. | ||||
* | Use _Py_re_match/search instead of re_match/search; these may become | Guido van Rossum | 1997-08-14 | 1 | -2/+3 |
| | | | | different in a future version. | ||||
* | Many changes. | Jeremy Hylton | 1997-08-13 | 1 | -98/+82 |
| | | | | | | | | | | | | | | | | | | | | | | Change default alloc size for uncompressing to 16K. Remove comment about core dumps when an invalid window sizes is used. This bug has been fixed in zlib 1.0.4. Two new optional arguments to decompress, wbits and bufsize. wbits specifies the window size and bufsize specifies the initial output string size. In decompression code -- decompress and decompressobj methods -- use a Python string (and _PyString_Resize) to collect the uncompressed stream. Replaces a separate buffer that was copied into a string. Fix bug in decompress that caused it to always realloc the buffer when it was finished decompressing. Modernized handling of optional arguments to compressobj. Updated doc strings. | ||||
* | 1.5a3 prerelease 1 from AMK | Guido van Rossum | 1997-08-13 | 4 | -100/+169 |
| | |||||
* | Must update the available space in the output buffer after | Jeremy Hylton | 1997-08-13 | 1 | -0/+3 |
| | | | | realloc. (Fixed in PyZlib_unflush.) | ||||
* | Fix bug with \< (AMK). | Guido van Rossum | 1997-08-13 | 1 | -1/+1 |
| | |||||
* | Changes by AMK: | Guido van Rossum | 1997-08-13 | 1 | -1/+527 |
| | | | | | | | | | | | Removed handling of \e, \cX escapes, following a string-SIG discussion. Fixed minor typos in re.py re.error is now set equal to reop.error. Move definition of constants like NORMAL and CHARCLASS into reop, which exports them; re.py was changed to import them from reop. Added C equivalents of _expand and expand_escape to reop, and changed re.py to use them. | ||||
* | Add syntax for hex,octal | Guido van Rossum | 1997-08-13 | 2 | -1/+9 |
| | |||||
* | cPickle release 0.3 from Jim Fulton | Guido van Rossum | 1997-08-13 | 2 | -169/+220 |
| | |||||
* | Megapatch for IRIX 6 by Sjoerd. | Guido van Rossum | 1997-08-12 | 1 | -338/+1599 |
| | |||||
* | Added buffer_info() method that returns address and length in bytes of | Guido van Rossum | 1997-08-12 | 1 | -0/+10 |
| | | | | the buffer used to hold the array -- for dangerous low-level I/O. | ||||
* | Renamed Py_input_hook to PyOS_InputHook. | Guido van Rossum | 1997-08-11 | 2 | -5/+5 |
| | | | | Also cleaned out some CR's left by the VC++ editor. | ||||
* | Added O_BINARY and O_TEXT (for Windows). | Guido van Rossum | 1997-08-08 | 1 | -0/+6 |
| | |||||
* | Rather unsatisfactory temporary hack to get it to run | Guido van Rossum | 1997-08-07 | 1 | -0/+10 |
| | | | | under WIN32 -- remove file handler interface, don't use Py_input_hook. | ||||
* | New version of Vladimir Marangozov's AIX hacks -- simpler etc. | Guido van Rossum | 1997-08-06 | 5 | -536/+4 |
| | |||||
* | Attempt to import readline at interactive startup. | Guido van Rossum | 1997-08-05 | 1 | -0/+8 |
| | |||||
* | New mechanism for GNU readline interface, via module | Guido van Rossum | 1997-08-05 | 3 | -9/+135 |
| | |||||
* | Add pointer to new BSDDB module. | Guido van Rossum | 1997-08-05 | 1 | -0/+3 |
| | |||||
* | purported linux portability patch (Oliver Andrich) | Guido van Rossum | 1997-08-05 | 1 | -0/+4 |
| | |||||
* | Py_Cleanup() is now Py_Finalize(). | Guido van Rossum | 1997-08-05 | 1 | -1/+1 |
| | |||||
* | Plug memory leak (DECREF doc string properly after inserting in dict). | Guido van Rossum | 1997-08-04 | 1 | -0/+1 |
| | |||||
* | Oops, one more checkin. Use the new tstate/interp interface. | Guido van Rossum | 1997-08-02 | 1 | -1/+2 |
| | |||||
* | Add finialization routines; fixed some memory leaks related to this. | Guido van Rossum | 1997-08-02 | 1 | -4/+35 |
| | | | | Reset the SIGINT handler when the finalization is invoked. | ||||
* | Free the malloc'ed buffer that holds the command once we're done with it. | Guido van Rossum | 1997-08-02 | 1 | -2/+3 |
| | | | | Instead of calling Py_Exit(sts), call Py_Cleanup() and return sts. | ||||
* | Add a simple way to enable purify; now you can set the Make variable | Guido van Rossum | 1997-08-02 | 1 | -1/+1 |
| | | | | | PURIFY (e.g. in the Setup file or on the make command line) to point to the purify command, to run purify. | ||||
* | Functionality enhancement: allow other threads to use Tk commands | Guido van Rossum | 1997-08-02 | 1 | -243/+211 |
| | | | | | | | | | | | | | | | | | | while one thread is blocked in mainloop(). Also, handle signals (not just interrupts) as soon as they happen. Cleanup: remove support for Tcl/Tk versions 7.4/4.0. (I've confirmed that it works for 7.5/4.1 and 7.6/4.2, as well as 8.0b2.) Coding style change: instead of ``func (args)'', write ``func(args)'' everywhere. Minor functionality change: use PyArg_ParseTuple everywhere. This should only affect the errors reported for bad argument lists; in particular, deletefilehandler() is much clearer about what's going on. (XXX Still to do: Mac and Win ports to 8.0b2.) | ||||
* | Compatibility with Tcl/Tk 8.0b*. | Guido van Rossum | 1997-08-01 | 1 | -14/+28 |
| |