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

sort by:
Revision Author Date Message Commit Date
87490eb Renamed inittab. 29 April 1997, 20:31:59 UTC
0bac33b Oops, forgot one: inittab. 29 April 1997, 20:24:10 UTC
1a43ce8 Added inittab. 29 April 1997, 20:22:47 UTC
79f25d9 Quickly renamed the remaining files -- this directory is done. 29 April 1997, 20:08:16 UTC
65bf9f2 Quickly renamed. 29 April 1997, 18:33:38 UTC
04e30c1 Remove err_input from rename list -- it is a static inside errors.c. 29 April 1997, 18:25:32 UTC
373c869 Quickly renamed. Also removed the long comment explaining why this is better than the old error API. 29 April 1997, 18:22:47 UTC
58d8e3d Remove renaming instructions for ANY -- this is not renamed in mymalloc.h. (Since it's a macro, I don't care much. It is used internally only; others can use void *.) 29 April 1997, 18:19:10 UTC
b209a11 Quickly renamed. 29 April 1997, 18:18:01 UTC
e2b4f09 Track updates in rename2.h. 29 April 1997, 16:27:09 UTC
e601c0f Added new name for inittab! 29 April 1997, 16:23:44 UTC
63c35e5 Remove macros that are only used for cgensupport.[ch]. Fixed typo in PyArg_VaParse (not PyArgs_*). 29 April 1997, 16:21:39 UTC
92e8782 Moved cgensupport.h to Modules (awaiting oblivion). 29 April 1997, 16:08:53 UTC
8105821 Added -I$(srcdir) to line for glmodule so we can move cgensupport.h here. 29 April 1997, 16:07:45 UTC
62cb0ba Moved to ../Modules. 29 April 1997, 15:50:32 UTC
ba9d7c5 Change the exception objects to have the string value "os.error" instead "posix.error" or "nt.error". 29 April 1997, 15:49:54 UTC
8ec9e63 Adapt Mac specific code to new universal headers (I think -- this is Jack's code). 29 April 1997, 15:49:04 UTC
dfed920 Hm. What was previously checked in was the edited *output* of the old cgen.py. Now that cgen.py and cstubs have been quickly renamed, check in the actual output. This has some "old-style" names left in (getilongarg etc.) but these are now take care of by macros in cgensupport.h (which is now specific to glmodule.c). 29 April 1997, 15:46:43 UTC
3837de0 Moved here from ../Python and quickly renamed. 29 April 1997, 15:43:55 UTC
58a6ac5 Removed cgensupport.[co] (to ../Modules). 29 April 1997, 15:42:53 UTC
4f1099f Added cgensupport.o. 29 April 1997, 15:41:53 UTC
7fa3b75 Added cgensupport.c to Setup line for gl module. Addeed Andrew Kuchling's zlib module. 29 April 1997, 15:41:26 UTC
9e3a812 Added Jeremy's resource module. 29 April 1997, 15:39:45 UTC
0a3eaf0 Quickly renamed. 29 April 1997, 15:39:28 UTC
fb22156 Added Andrew Kuchling's zlib module. 29 April 1997, 15:38:09 UTC
1818b77 Moved rename2's macros relevant to this module here and added comment about the file's obsolescence. 29 April 1997, 15:35:28 UTC
1875247 Quickly renamed. 29 April 1997, 14:49:28 UTC
9d0a3df Transformed comments to doc strings. Added symlinks option to copytree. 29 April 1997, 14:45:19 UTC
a2baf46 Reindented at 4 spaces. 29 April 1997, 14:06:46 UTC
5980845 Add feature to copy(), copy2(): dst may be a directory. Remove unneeded check for '.' / '..' from copytree(). Add some comments. 29 April 1997, 14:06:05 UTC
277206b Improvements to copyfile(): open the files in binary mode, and close them in a finally clause. 29 April 1997, 13:08:15 UTC
e9a0732 Note that passing a filename to uu.{en,de}code() is deprecated. 27 April 1997, 21:29:51 UTC
e76b7a8 Added fnmatch, base64 and quopri, received from Andrew Kuchling. 27 April 1997, 21:25:52 UTC
8be9a11 Restore two features of the original 1.4 pickle: - which_module() search __main__ last; - load_inst() no longer checks that the classname really refers to a class. 25 April 1997, 19:52:29 UTC
faeae5c Alas, I have to restore 'marshal', since it is needed by the new cPickle-compatible pickle, and pickle must be importable in restricted mode. I guess I'll have to make marshal safe. 25 April 1997, 19:10:15 UTC
5026cb4 Now that the string-sig has settled on r"obin" strings, restrict the <letter><string> notation to 'r' and 'R'. 25 April 1997, 17:32:00 UTC
c474dea Expand one level of symbolic link in sys.argv[0] before inserting its dirname in sys.path. This means that you can create a symbolic link foo in /usr/local/bin pointing to /usr/yourname/src/foo/foo.py, and then invoking foo will insert /usr/yourname/src/foo in sys.path, not /usr/local/bin. This makes it easier to have multifile programs (before, the program would have to do an os.readlink(sys.argv[0]) itself and insert the resulting directory in sys.path -- Grail does this). Note that the expansion is only used for sys.path; sys.argv[0] is still the original, unadorned filename (/usr/local/bin/foo in the example). 25 April 1997, 15:38:31 UTC
4246edd Unroll the for loop used for building python, so the first three subdirectories can be made in parallel (unfortunately, Modules has to depend on all three). 23 April 1997, 15:14:24 UTC
caa9f23 Change inspired by Tommy Burnette to add an interface to get stderr, too. 21 April 1997, 14:15:55 UTC
5fd026d Fix a couple of glitches identified by Greg Stein. 18 April 1997, 13:54:13 UTC
f39d051 _safe_repr(): Make the context parameter required; ok since it's only for internal use. Make sure the maxlevels and level parameters get passed to recursive invocations. 16 April 1997, 18:55:58 UTC
a89fda0 Muchly changed and improved pprint.py: - handles recursive data structures - formatting based on a PrettyPrinter object - allows a maximum nesting depth to be specified - provides safe repr()-like function which does not pretty-print 16 April 1997, 16:59:30 UTC
ab0d1af spliturl() should not throw away everything past first newline 16 April 1997, 15:17:06 UTC
b2c02de Removed pprint.py. Removed pprint.py from the README; it's now in the standard lib. 16 April 1997, 04:47:57 UTC
0c5e049 Reindented with 4 spaces. 16 April 1997, 02:47:12 UTC
7cfd31e Rewrite parsesequence() to emulate MH without invoking pick. Test it extensively by using pick. 16 April 1997, 02:45:08 UTC
5e92aff Checking in a copy of Fred Drake's data structure pretty-printer (with some slight formatting changes). Feature requests: - Make it a class (everything should be a class); - support recursive data structures (like pp.py on the ftp contrib site). 16 April 1997, 00:49:59 UTC
03a7466 OK, ready to make 'assert' a keyword (instead of '__assert__'). 16 April 1997, 00:34:46 UTC
7aa9fc5 Use uuencoded test images. 16 April 1997, 00:30:45 UTC
684480f Soft failure for Win32 and Mac platforms. Less output unless verbose. 16 April 1997, 00:29:59 UTC
cc5a91d Soft failure for Win32 platform. 16 April 1997, 00:29:15 UTC
505043f No need to define assert, it's built in. 16 April 1997, 00:27:45 UTC
b5d2039 Always use spaces for indentation. Added pformat() function: formats object to a string representation with no trailing newline; returns the string. 15 April 1997, 14:15:23 UTC
103cc6d Patch by Craig McPheeters to clean up the back-references to widgets contained in commands created by those same widgets. 14 April 1997, 13:30:24 UTC
5a56649 Remove Digital Creations copyright (Jim sez it's okay). 11 April 1997, 22:31:56 UTC
62bd30c Catch and report ValueError raised by strftime. 11 April 1997, 22:26:42 UTC
b31c7dc OK, I lied. On Windows, _IOLBF seems to be the same as full buffering, so to get the normal behavior back, I set it to unbuffered. 11 April 1997, 22:19:12 UTC
2a21219 Change in when and how stdin and stdout are set to line-buffering. This used to be done whenever stdin was interactive. Now we only do it when the -i flag is given. Also (and this is the real reason for this fix) we explicitly allocate a buffer -- this seems to be necessary on Windows. 11 April 1997, 21:57:53 UTC
7844e38 Keep Microsoft VC happy. 11 April 1997, 20:44:04 UTC
6bf62da Keep gcc -Wall and Microsoft VC happy. 11 April 1997, 20:37:35 UTC
9012603 Removed two unused static function: string_addsep() and string_append(). These must be artifacts of GvR's rewrite. Fixed some typos in the leading comment (and re-filled the paragraphs). Hope you don't mind, Guido. 11 April 1997, 20:27:03 UTC
3dc35b0 My own patch: support writable 'softspace' attribute. 11 April 1997, 19:56:06 UTC
1d2e240 (Jack:) On the Mac, don't automatically enable dynamic loading. 11 April 1997, 19:22:06 UTC
62bf108 (Jack:) Don't define TRUE and FALSE if already defined. 11 April 1997, 19:19:46 UTC
6976a52 (Jack:) On the Mac, use standard strerror() if using MSL C-library. 11 April 1997, 19:18:23 UTC
2d45be1 (Jack:) On the Mac, give syntax error on \r. 11 April 1997, 19:16:25 UTC
3648884 (Jack:) Align mapping entries to 4-words if USE_CACHE_ALIGNED is defined. 11 April 1997, 19:14:07 UTC
fd16d94 (Jack:) fopen arg typo (?) "rw" changed to "rb". 11 April 1997, 19:12:20 UTC
fb421c8 (Jack:) Mac only: get GUSI errno.h values too. 11 April 1997, 19:11:25 UTC
54a1d0b (Jack+Guido:) interpret ../ in basejoin() according to RFC1808. 11 April 1997, 19:09:51 UTC
c511aee Open files in binary mode. 11 April 1997, 19:01:48 UTC
f4f756c (Jack:) Better MacOS support. 11 April 1997, 19:00:53 UTC
9e33074 (Jack:) Recognize PNG files. 11 April 1997, 18:59:38 UTC
3d82972 Remove the Emacs shell-script line. It's not a shell script. 11 April 1997, 18:42:45 UTC
5f32248 From: Clarence Gardner <clarence@king.silcom.com> The function parse_qs currently calls urllib.unquote on the value of the field submitted, but not on the name. It needs to do both. 11 April 1997, 18:20:42 UTC
9722781 The default path components are now all relative instead of absolute paths. This completes the getpath.c checkin. Note that to enable this in an existing build tree, you'll have to edit your Setup and Setup.in file to remove the $(DESTLIB) from all the PATH variable definitions. 11 April 1997, 17:19:54 UTC
305e5d0 Completely revamped the way the default path is constructed. Idea and first three implementation rounds due to Barry -- after that I spent another day on it, hopefully it's enough for now :-) (Wait for the checkin to Setup.in.) 11 April 1997, 17:18:45 UTC
ec61b77 Pass VERSION and VPATH into getpath.c. 11 April 1997, 17:04:49 UTC
5d88aa3 Oops, added <URL:...> around the URL. 11 April 1997, 16:46:56 UTC
24c9359 (Sjoerd:) Incorporate `build number' stuff. 11 April 1997, 15:25:47 UTC
5ad7aaf (Sjoerd:) Install getbuildinfo.c in config/ so extensions can use it. 11 April 1997, 15:25:08 UTC
1e0b19e Bugfix by Sjoerd: /* x_ocount is in bytes, wheras play.samples is in frames */ /* we want frames */ 11 April 1997, 15:23:52 UTC
a3d9e02 base64 support by Sjoerd. 11 April 1997, 15:22:56 UTC
44adb0c Added note about SWIG (replacing a whole lot of nonsense about how difficult it is to do). 11 April 1997, 15:19:35 UTC
cb5cf9b Use uuencoded test images. 09 April 1997, 21:25:01 UTC
cee1dd3 Don't just die when an error is not defined; print a warning instead. This for errno-challenged platforms like Windows. 09 April 1997, 21:02:17 UTC
a6ed225 Try calling getpid() from /usr/lib/libc.so instead of some other random things. 09 April 1997, 20:57:52 UTC
c9f8f14 Use TESTFN instead of /etc/passwd and /dev/null as test files. 09 April 1997, 20:51:54 UTC
2095d24 Tweaks to keep the Microsoft compiler quiet. 09 April 1997, 19:41:24 UTC
644a12b Tweaks to keep the Microsoft compiler quier. 09 April 1997, 19:24:53 UTC
8017767 Remove unused variable. 09 April 1997, 18:22:28 UTC
fa658ce Remove two unised variables. 09 April 1997, 18:19:39 UTC
45c3aab Got rid of the static decl of PyCObject_Import, which was a 1.4 compatibility hack. 09 April 1997, 18:04:08 UTC
d385d59 Give PyErr_Format a new name and make it static. 09 April 1997, 17:47:47 UTC
4706562 support module for cPickle 09 April 1997, 17:44:11 UTC
60456fd Jim Fulton's version 2.2. 09 April 1997, 17:36:32 UTC
154417e Unknown changes by Jim Fulton. 09 April 1997, 17:35:33 UTC
0a73dd5 Changed the way the C API was exported. Jim Fulton. 09 April 1997, 17:34:28 UTC
b72cf2d New version by Digital Creations, supports binary format compatible with cPickle. 09 April 1997, 17:32:51 UTC
de65527 Ping's latest. Fixes triple quoted strings ending in odd #backslashes, and other stuff I don't know. 09 April 1997, 17:15:54 UTC
back to top