Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Updated for new situation; added VC++ 5.0 info and new path strategies. | Guido van Rossum | 1997-08-14 | 1 | -22/+51 |
| | |||||
* | Moved some non-standard format characters out of the standard list. | Guido van Rossum | 1997-08-14 | 1 | -20/+22 |
| | | | | | | | Also moved %c and %Z out of there, even though they are standard, because these are locale dependent (and e.g. on Windows and Mac they return different strings). Finally, sorted the tables slightly different, to match my standard docs better (%a before %A). | ||||
* | Added logmerge.py | Guido van Rossum | 1997-08-14 | 1 | -0/+1 |
| | |||||
* | Consolidate a bunch of CVS or RCS logs read from stdin. | Guido van Rossum | 1997-08-14 | 1 | -0/+124 |
| | |||||
* | OK, reop is safe again. | Guido van Rossum | 1997-08-14 | 1 | -2/+2 |
| | |||||
* | 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 more stuff on initialization (still rudimentary) | Guido van Rossum | 1997-08-14 | 2 | -250/+866 |
| | |||||
* | Added new intro sections (incomplete); fixed various typos | Guido van Rossum | 1997-08-14 | 2 | -14/+374 |
| | |||||
* | New version (changes are so minor that I don't bother to explain them). | Guido van Rossum | 1997-08-14 | 1 | -2/+2 |
| | |||||
* | Of course, this file should be empty except for an informative comment. | Guido van Rossum | 1997-08-14 | 1 | -23/+1 |
| | |||||
* | Add a separate SRC directory and insert it in front of the path. | Guido van Rossum | 1997-08-14 | 1 | -1/+2 |
| | |||||
* | Add missing semicolon to '>'. | Guido van Rossum | 1997-08-14 | 1 | -1/+1 |
| | |||||
* | Added cvsfiles.py and treesync.py | Guido van Rossum | 1997-08-14 | 1 | -0/+2 |
| | |||||
* | Source tree synchronization tool (for Windowes, mostly) | Guido van Rossum | 1997-08-14 | 1 | -0/+200 |
| | |||||
* | Print a list of files under CVS. | Guido van Rossum | 1997-08-14 | 1 | -0/+42 |
| | |||||
* | support C++ comments | Guido van Rossum | 1997-08-14 | 1 | -1/+3 |
| | |||||
* | set LOOPS to 10000 | Guido van Rossum | 1997-08-14 | 2 | -2/+2 |
| | |||||
* | Add XXX warning about fishy line | Guido van Rossum | 1997-08-14 | 1 | -0/+1 |
| | |||||
* | Use _beginthread() and _endthread() in favor of CreateThread() and | Guido van Rossum | 1997-08-14 | 1 | -16/+8 |
| | | | | | | | ExitThread(). As discussed in c.l.p, this takes care of initialization and finalization of thread-local storage allocated by the C runtime system. Not sure whether non-MS compilers grok this though (but who cares :-). | ||||
* | Added Jim Fulton's PyImport_Import(), which calls whatever | Guido van Rossum | 1997-08-14 | 1 | -0/+78 |
| | | | | __import__() hook is currently installed. | ||||
* | 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. | ||||
* | Print `a` so encrypted text is shown in ascii, not binary. | Guido van Rossum | 1997-08-14 | 2 | -2/+2 |
| | |||||
* | Added prototype for PyImport_Import(). | Guido van Rossum | 1997-08-14 | 1 | -0/+1 |
| | |||||
* | Updated platform specific notes (it is now more common to have this) | Guido van Rossum | 1997-08-14 | 2 | -8/+40 |
| | | | | added some caveats. | ||||
* | Added buffer_info() docs. | Guido van Rossum | 1997-08-14 | 2 | -0/+20 |
| | |||||
* | Minor typo only. | Guido van Rossum | 1997-08-14 | 2 | -4/+4 |
| | |||||
* | Add try-finally around main loop. | Guido van Rossum | 1997-08-14 | 1 | -2/+5 |
| | |||||
* | Added (commented-out) defs for use with the build tree instead of the | Guido van Rossum | 1997-08-14 | 1 | -3/+10 |
| | | | | installed version. | ||||
* | Added QNX remarks. | Guido van Rossum | 1997-08-14 | 1 | -0/+5 |
| | |||||
* | The usual | Guido van Rossum | 1997-08-14 | 1 | -191/+208 |
| | |||||
* | Don't call sys.exit() all over the place -- simply return the exit | Guido van Rossum | 1997-08-14 | 1 | -4/+4 |
| | | | | | status from main() and call sys.exit(main()) in the startup stub at the end of the file. | ||||
* | Comment out use of reop.expand_escape and reop._expand until their | Guido van Rossum | 1997-08-14 | 1 | -2/+2 |
| | | | | bugginess has been fixed. | ||||
* | 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. | ||||
* | Fred Lundh's latest versions. | Guido van Rossum | 1997-08-14 | 6 | -22/+42 |
| | |||||
* | Add dummies for create/delete filehandles, just so that vanilla Grail | Guido van Rossum | 1997-08-14 | 2 | -0/+12 |
| | | | | 0.3 won't break on Windows. | ||||
* | Documented mime_decode_header() and mime_encode_header(). | Guido van Rossum | 1997-08-14 | 2 | -0/+16 |
| | |||||
* | Fixed (and documented, see Doc/libmimify.tex) mime_decode_header() and | Guido van Rossum | 1997-08-14 | 1 | -4/+6 |
| | | | | mime_encode_header(). | ||||
* | Added Windows NT instructions. | Guido van Rossum | 1997-08-14 | 1 | -3/+34 |
| | |||||
* | Changes for building under windows. | Guido van Rossum | 1997-08-14 | 2 | -9/+87 |
| | |||||
* | 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. | ||||
* | Probably the last VC++ 4.2 makefile I'll check in. | Guido van Rossum | 1997-08-13 | 1 | -247/+64 |
| | | | | After this I will be using 5.0, which has binary workspace files... | ||||
* | Small changes to readme and makefile; tested for 1.5a3! | Guido van Rossum | 1997-08-13 | 2 | -6/+7 |
| | |||||
* | 1.5a3 prerelease 1 from AMK | Guido van Rossum | 1997-08-13 | 8 | -114/+226 |
| | |||||
* | Must update the available space in the output buffer after | Jeremy Hylton | 1997-08-13 | 1 | -0/+3 |
| | | | | realloc. (Fixed in PyZlib_unflush.) | ||||
* | removed getpath_nt.c in favor of revamped getpathp.c | Guido van Rossum | 1997-08-13 | 1 | -203/+0 |
| | |||||
* | Much rewritten. Added Win32 registry stuff (from getpath_nt.c, which | Guido van Rossum | 1997-08-13 | 1 | -55/+222 |
| | | | | | | | is now obsolete), and changed the default path calculations. $PYTHONPATH is now added as a prefix (like it's always been on Unix); $PYTHONHOME takes precedence over the program pathname; and only one landmark is needed. | ||||
* | Made it real. Changed locking() to work with file descriptors instead | Guido van Rossum | 1997-08-13 | 1 | -44/+134 |
| | | | | | | of Python file objects. Added open_osfhandle() (Mark had done some work for that), get_osfhandle(), setmode(), and the console I/O functions kbhit(), getch(), getche(), ungetch(), and putch(). | ||||
* | Some changes to make it work on NT; add the directory where the binary | Guido van Rossum | 1997-08-13 | 1 | -2/+9 |
| | | | | | | | | lives to the end of the path. (Still to do: add $PYTHONPATH to the front instead of using it as is; add the Win32 registry paths as in getpath_nt.c (which can then retire).) |