Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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).) | ||||
* | Moved PyWin_IsWin32s() here. | Guido van Rossum | 1997-08-13 | 1 | -1/+15 |
| | |||||
* | Remove #define main; remove vc40 from PYTHONPATH. | Guido van Rossum | 1997-08-13 | 1 | -2/+1 |
| | |||||
* | Fix bug with \< (AMK). | Guido van Rossum | 1997-08-13 | 1 | -1/+1 |
| | |||||
* | Add try-finally to close the file after loading it in | Guido van Rossum | 1997-08-13 | 1 | -13/+16 |
| | | | | | ModuleLoader.load_module! (Thanks to Daniel Larsson who complained about this.) | ||||
* | Various changes by AMK, e.g. remove \e, \cX, add \v | Guido van Rossum | 1997-08-13 | 1 | -19/+22 |
| | |||||
* | 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 | 3 | -175/+245 |
| | |||||
* | New dialog from Fred Lundh | Guido van Rossum | 1997-08-12 | 2 | -0/+424 |
| | |||||
* | Fixes for the Mac. (Jack) | Guido van Rossum | 1997-08-12 | 3 | -5/+16 |
| | |||||
* | Changes suggested by Jim fulton: | Guido van Rossum | 1997-08-12 | 1 | -13/+10 |
| | | | | | - Moved most imports to the top, for faster loadingf when using ni. - Always open the temp file in binary mode. | ||||
* | Added TemporaryFile and wrapper class by Jim Fulton. | Guido van Rossum | 1997-08-12 | 1 | -2/+41 |
| | | | | Look in more env vars (for NT: TEMP, TMP). | ||||
* | Added decls for stuff from myreadline. | Guido van Rossum | 1997-08-12 | 1 | -0/+5 |
| | |||||
* | Megapatch for IRIX 6 by Sjoerd. | Guido van Rossum | 1997-08-12 | 1 | -338/+1599 |
| | |||||
* | Added prototype for various finalizers. | Guido van Rossum | 1997-08-12 | 1 | -0/+13 |
| | |||||
* | Added prototype for PyGrammar_RemoveAccelerators(). | Guido van Rossum | 1997-08-12 | 1 | -0/+1 |
| | |||||
* | 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. | ||||
* | Fix mixup about PyErr_NoMemory() prototype. | Guido van Rossum | 1997-08-12 | 1 | -4/+8 |
| | |||||
* | Use string interning and caching to get speedups on the mac (Jack). | Guido van Rossum | 1997-08-12 | 1 | -1/+17 |
| | |||||
* | Use strerror on the mac if using MSL (Jack). | Guido van Rossum | 1997-08-12 | 1 | -6/+0 |
| | |||||
* | Bump MS_DLL_ID to 1.5.0. | Guido van Rossum | 1997-08-12 | 1 | -1/+1 |
| | |||||
* | Allow paths without drive specifier (Jack). | Guido van Rossum | 1997-08-12 | 1 | -4/+8 |
| | |||||
* | Rewrite normcase() using string.translate... | Guido van Rossum | 1997-08-12 | 1 | -14/+6 |
| | |||||
* | Treat all HTTP/1.* versions the same. | Guido van Rossum | 1997-08-12 | 1 | -2/+2 |
| | |||||
* | Two changes: | Guido van Rossum | 1997-08-11 | 1 | -14/+13 |
| | | | | | | | | | (1) No longer close self.sock; close it on close(). (Guido) (2) Don't use regular expressions for what can be done simply with string.split() -- regex is thread unsafe. (Jeremy) (3) Delete unused imports. (Jeremy) | ||||
* | Renamed Py_input_hook to PyOS_InputHook. | Guido van Rossum | 1997-08-11 | 4 | -9/+9 |
| | | | | Also cleaned out some CR's left by the VC++ editor. | ||||
* | Rewrite using class, to make waiting for processes possible; | Guido van Rossum | 1997-08-11 | 1 | -31/+79 |
| | | | | by default children are waited for automatically. | ||||
* | Changed indents to 4 *spaces*; added Emacs variables to avoid | Guido van Rossum | 1997-08-10 | 1 | -241/+245 |
| | | | | | inserting tabs. All this (and the previous patch) in preparation for porting to NT. | ||||
* | Support using -p/-P to point to the source/build directory instead of | Guido van Rossum | 1997-08-10 | 1 | -12/+32 |
| | | | | | the install directory. Added -h option to print the full usage message; by default, only two lines are now printed for errors. | ||||
* | #Fixed two byte-compiler errors | Barry Warsaw | 1997-08-09 | 1 | -2/+2 |
| | |||||
* | #Checkpointing X/Emacs 20'fication of this mode. | Barry Warsaw | 1997-08-09 | 1 | -210/+231 |
| | |||||
* | Added O_BINARY and O_TEXT (for Windows). | Guido van Rossum | 1997-08-08 | 1 | -0/+6 |
| | |||||
* | More emphasis on os.environ's calling of putenv; and added hint about | Guido van Rossum | 1997-08-08 | 2 | -8/+28 |
| | | | | flags for open(). | ||||
* | #Bumping to version 3.0 | Barry Warsaw | 1997-08-08 | 1 | -2/+1 |
| | |||||
* | mkalias() now has an optional third parameter to create relative | Jack Jansen | 1997-08-08 | 1 | -2/+7 |
| | | | | aliases (Just) | ||||
* | - Added classes to support class/property generation by gensuitemodule | Jack Jansen | 1997-08-08 | 3 | -17/+111 |
| | | | | - Fixed Property class: selector is a 'type', not an 'enum' | ||||
* | Added (dummy) PyOS_FiniInterrupts | Jack Jansen | 1997-08-08 | 1 | -0/+5 |
| | |||||
* | Adapted for 1.5a3: Py_SupressPrintingFlag is gone, and | Jack Jansen | 1997-08-08 | 1 | -21/+9 |
| | | | | Py_SetProgramName replaces Py_GetProgramName | ||||
* | New version number, new tk resources, new error numbers, new GUSI | Jack Jansen | 1997-08-08 | 7 | -4316/+4819 |
| |