Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
4a944d7 Added more stuff on initialization (still rudimentary) 14 August 1997, 20:35:38 UTC
59a6135 Added new intro sections (incomplete); fixed various typos 14 August 1997, 20:34:33 UTC
91c7c93 New version (changes are so minor that I don't bother to explain them). 14 August 1997, 20:20:42 UTC
fee9faa Of course, this file should be empty except for an informative comment. 14 August 1997, 20:19:27 UTC
193a11e Add a separate SRC directory and insert it in front of the path. 14 August 1997, 20:18:18 UTC
1dccdc2 Add missing semicolon to '>'. 14 August 1997, 20:17:20 UTC
4d3376a Added cvsfiles.py and treesync.py 14 August 1997, 20:16:32 UTC
a554107 Source tree synchronization tool (for Windowes, mostly) 14 August 1997, 20:15:20 UTC
30e53c0 Print a list of files under CVS. 14 August 1997, 20:14:54 UTC
9189bda support C++ comments 14 August 1997, 20:14:29 UTC
5526e39 set LOOPS to 10000 14 August 1997, 20:14:12 UTC
77b3008 Add XXX warning about fishy line 14 August 1997, 20:13:46 UTC
49b1226 Use _beginthread() and _endthread() in favor of CreateThread() and 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 :-). 14 August 1997, 20:12:58 UTC
d47a0a8 Added Jim Fulton's PyImport_Import(), which calls whatever __import__() hook is currently installed. 14 August 1997, 20:11:26 UTC
6d8841c Added a bunch of XXX comments about things I'd like to see changed... 14 August 1997, 19:57:39 UTC
0d2390c Merge Mac and Windows mods (which mostly affect the same problem -- no usable createfilehandler). Define HAVE_CREATEFILEHANDLER to test later. Also other Mac specific patches by Jack. 14 August 1997, 19:57:07 UTC
c4c2641 Print `a` so encrypted text is shown in ascii, not binary. 14 August 1997, 19:55:00 UTC
9faabb8 Added prototype for PyImport_Import(). 14 August 1997, 19:52:09 UTC
3572d37 Updated platform specific notes (it is now more common to have this) added some caveats. 14 August 1997, 19:51:26 UTC
8f06247 Added buffer_info() docs. 14 August 1997, 19:50:37 UTC
98046b9 Minor typo only. 14 August 1997, 19:50:18 UTC
dac4447 Add try-finally around main loop. 14 August 1997, 19:49:27 UTC
20abb4e Added (commented-out) defs for use with the build tree instead of the installed version. 14 August 1997, 19:48:42 UTC
40d6358 Added QNX remarks. 14 August 1997, 19:45:30 UTC
76c5fe2 The usual 14 August 1997, 19:45:07 UTC
e838701 Don't call sys.exit() all over the place -- simply return the exit status from main() and call sys.exit(main()) in the startup stub at the end of the file. 14 August 1997, 19:40:34 UTC
257c772 Comment out use of reop.expand_escape and reop._expand until their bugginess has been fixed. 14 August 1997, 19:33:06 UTC
0318bd6 Use _Py_re_match/search instead of re_match/search; these may become different in a future version. 14 August 1997, 14:35:12 UTC
1530c87 Fred Lundh's latest versions. 14 August 1997, 14:17:28 UTC
f53c86c Add dummies for create/delete filehandles, just so that vanilla Grail 0.3 won't break on Windows. 14 August 1997, 14:15:54 UTC
fcaf26e Documented mime_decode_header() and mime_encode_header(). 14 August 1997, 14:13:01 UTC
88bb808 Fixed (and documented, see Doc/libmimify.tex) mime_decode_header() and mime_encode_header(). 14 August 1997, 14:10:37 UTC
7ba3de4 Added Windows NT instructions. 14 August 1997, 02:12:04 UTC
58a5948 Changes for building under windows. 14 August 1997, 01:45:33 UTC
41b9f00 Many changes. 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. 13 August 1997, 23:19:55 UTC
4036c9c Probably the last VC++ 4.2 makefile I'll check in. After this I will be using 5.0, which has binary workspace files... 13 August 1997, 23:08:39 UTC
f644882 Small changes to readme and makefile; tested for 1.5a3! 13 August 1997, 23:07:44 UTC
95e8053 1.5a3 prerelease 1 from AMK 13 August 1997, 22:34:14 UTC
a74ef66 Must update the available space in the output buffer after realloc. (Fixed in PyZlib_unflush.) 13 August 1997, 21:39:18 UTC
00b299a removed getpath_nt.c in favor of revamped getpathp.c 13 August 1997, 21:38:04 UTC
eea1449 Much rewritten. Added Win32 registry stuff (from getpath_nt.c, which 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. 13 August 1997, 21:30:44 UTC
407a22d Made it real. Changed locking() to work with file descriptors instead 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(). 13 August 1997, 19:57:53 UTC
8f1b651 Some changes to make it work on NT; add the directory where the binary 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).) 13 August 1997, 19:55:43 UTC
0e6ae93 Moved PyWin_IsWin32s() here. 13 August 1997, 19:53:11 UTC
5137ea9 Remove #define main; remove vc40 from PYTHONPATH. 13 August 1997, 19:52:26 UTC
abed54a Fix bug with \< (AMK). 13 August 1997, 16:35:04 UTC
6dc61b1 Add try-finally to close the file after loading it in ModuleLoader.load_module! (Thanks to Daniel Larsson who complained about this.) 13 August 1997, 14:48:36 UTC
6af4abd Various changes by AMK, e.g. remove \e, \cX, add \v 13 August 1997, 03:25:34 UTC
c24f038 Changes by AMK: 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. 13 August 1997, 03:24:53 UTC
52d6832 Add syntax for hex,octal 13 August 1997, 03:21:14 UTC
142eeb8 cPickle release 0.3 from Jim Fulton 13 August 1997, 03:14:41 UTC
f55afae New dialog from Fred Lundh 12 August 1997, 18:21:21 UTC
9d9af2c Fixes for the Mac. (Jack) 12 August 1997, 18:21:08 UTC
a5e9fb6 Changes suggested by Jim fulton: - Moved most imports to the top, for faster loadingf when using ni. - Always open the temp file in binary mode. 12 August 1997, 18:18:13 UTC
ca54982 Added TemporaryFile and wrapper class by Jim Fulton. Look in more env vars (for NT: TEMP, TMP). 12 August 1997, 18:00:12 UTC
3fb1aea Added decls for stuff from myreadline. 12 August 1997, 15:14:22 UTC
7242905 Megapatch for IRIX 6 by Sjoerd. 12 August 1997, 14:58:54 UTC
8e5e446 Added prototype for various finalizers. 12 August 1997, 14:57:21 UTC
bb301c5 Added prototype for PyGrammar_RemoveAccelerators(). 12 August 1997, 14:57:08 UTC
de4a4ca Added buffer_info() method that returns address and length in bytes of the buffer used to hold the array -- for dangerous low-level I/O. 12 August 1997, 14:55:56 UTC
ea46e4d Fix mixup about PyErr_NoMemory() prototype. 12 August 1997, 14:54:54 UTC
741689d Use string interning and caching to get speedups on the mac (Jack). 12 August 1997, 14:53:39 UTC
e5b4026 Use strerror on the mac if using MSL (Jack). 12 August 1997, 14:51:52 UTC
15974ad Bump MS_DLL_ID to 1.5.0. 12 August 1997, 14:48:03 UTC
d510b72 Allow paths without drive specifier (Jack). 12 August 1997, 14:47:24 UTC
e2ad88c Rewrite normcase() using string.translate... 12 August 1997, 14:46:58 UTC
efa6837 Treat all HTTP/1.* versions the same. 12 August 1997, 14:46:13 UTC
2567dd6 Two changes: (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) 11 August 1997, 21:52:17 UTC
4462064 Renamed Py_input_hook to PyOS_InputHook. Also cleaned out some CR's left by the VC++ editor. 11 August 1997, 18:57:29 UTC
0357d02 Rewrite using class, to make waiting for processes possible; by default children are waited for automatically. 11 August 1997, 03:27:24 UTC
0b4b8a2 Changed indents to 4 *spaces*; added Emacs variables to avoid inserting tabs. All this (and the previous patch) in preparation for porting to NT. 10 August 1997, 16:56:48 UTC
9a6e855 Support using -p/-P to point to the source/build directory instead of the install directory. Added -h option to print the full usage message; by default, only two lines are now printed for errors. 10 August 1997, 16:47:17 UTC
516b620 #Fixed two byte-compiler errors 09 August 1997, 06:43:20 UTC
c72c11c #Checkpointing X/Emacs 20'fication of this mode. 09 August 1997, 06:42:08 UTC
98d9d09 Added O_BINARY and O_TEXT (for Windows). 08 August 1997, 21:48:51 UTC
9c43c59 More emphasis on os.environ's calling of putenv; and added hint about flags for open(). 08 August 1997, 21:05:09 UTC
7d6b7d3 #Bumping to version 3.0 08 August 1997, 16:19:03 UTC
48f662d mkalias() now has an optional third parameter to create relative aliases (Just) 08 August 1997, 15:00:59 UTC
756a69f - Added classes to support class/property generation by gensuitemodule - Fixed Property class: selector is a 'type', not an 'enum' 08 August 1997, 15:00:03 UTC
a8441de Added (dummy) PyOS_FiniInterrupts 08 August 1997, 14:57:37 UTC
7330b39 Adapted for 1.5a3: Py_SupressPrintingFlag is gone, and Py_SetProgramName replaces Py_GetProgramName 08 August 1997, 14:56:41 UTC
4be0ce3 New version number, new tk resources, new error numbers, new GUSI 08 August 1997, 14:55:03 UTC
12f318a Don't define ENOENT when compiling with MSL 08 August 1997, 14:53:16 UTC
04df97c CW11 projects replaced by CW Pro 1 projects, and all cfm68k/ppc projects unified (as much as possible: PythonCore is still separate). 08 August 1997, 14:51:57 UTC
e3fa874 Modified for CW Pro 1 projects. Convention used: .mu files are old project files, which have to be cleaned up before checking in, .prj files are CW Pro 1 projects (which are always clean). Prj files are still binhexed, even though they only have a data fork (and, hence, could be checked in in binary mode). 08 August 1997, 14:51:54 UTC
6654422 Generate class, property and comparison code (finally!). The resulting code isn't ideal yet: xxx.Window(1).Paragraph(3).font will only work if all the classes and properties are declared in the same suite, but at least font(Paragraph(3, Window(1))) always works. 08 August 1997, 14:49:02 UTC
622f73f Remove unised variable 07 August 1997, 19:22:48 UTC
02c0467 Rather unsatisfactory temporary hack to get it to run under WIN32 -- remove file handler interface, don't use Py_input_hook. 07 August 1997, 00:12:22 UTC
29c1ea5 Got the new structure working with MSVC 4.2. main_nt.c is gone -- we can use Modules/python.c now. Added Mark Hammond's module msvcrt.c (untested). Added several new symbols. 07 August 1997, 00:11:34 UTC
fb84255 New version of Vladimir Marangozov's AIX hacks -- simpler etc. 06 August 1997, 23:42:07 UTC
b06df27 --with-readline is obsolete (and some editorial stuff in README) 05 August 1997, 21:50:20 UTC
3c7c678 Got rid of --with-readline, at last. 05 August 1997, 21:47:42 UTC
9b5dbed Attempt to import readline at interactive startup. 05 August 1997, 21:34:14 UTC
717c6f9 Move GNU readline interface to ../Modules/readline.c. Add Py_input_hook (used by _tkinter and perhaps Gist). 05 August 1997, 21:28:12 UTC
0969d36 New mechanism for GNU readline interface, via module 05 August 1997, 21:27:50 UTC
570278b Add test for function comparisons 05 August 1997, 16:52:50 UTC
83f9ad8 Fix bug in comparing function objects detected by Sjoerd: SystemError: bad argument to internal function caused by comparing NULL pointer default args. 05 August 1997, 16:51:05 UTC
d6615ab Get READABLE c.s. from _tkinter instead of conditional definition. in Tk.destroy(), reset _default_root to None when it is us. 05 August 1997, 02:35:01 UTC
1d529d1 Add a cast to the call to _Py_Dealloc in the expanded version of Py_DECREF, to reduce the warnings when compiling with reference count debugging on. (There are still warnings for each call to _Py_NewReference -- too bad.) 05 August 1997, 02:30:44 UTC
7f400be Add pointer to new BSDDB module. 05 August 1997, 02:25:24 UTC
back to top