summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch by Craig McPheeters to clean up the back-references to widgetsGuido van Rossum1997-04-142-4/+46
| | | | contained in commands created by those same widgets.
* Remove Digital Creations copyright (Jim sez it's okay).Guido van Rossum1997-04-111-53/+0
|
* Catch and report ValueError raised by strftime.Guido van Rossum1997-04-111-4/+16
|
* OK, I lied. On Windows, _IOLBF seems to be the same as fullGuido van Rossum1997-04-111-4/+8
| | | | | buffering, so to get the normal behavior back, I set it to unbuffered.
* Change in when and how stdin and stdout are set to line-buffering.Guido van Rossum1997-04-111-3/+5
| | | | | | | 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.
* Keep Microsoft VC happy.Guido van Rossum1997-04-115-29/+31
|
* Keep gcc -Wall and Microsoft VC happy.Guido van Rossum1997-04-116-28/+31
|
* Removed two unused static function: string_addsep() andBarry Warsaw1997-04-111-98/+61
| | | | | | | | | 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.
* My own patch: support writable 'softspace' attribute.Guido van Rossum1997-04-111-2/+23
|
* (Jack:) On the Mac, don't automatically enable dynamic loading.Guido van Rossum1997-04-111-8/+0
|
* (Jack:) Don't define TRUE and FALSE if already defined.Guido van Rossum1997-04-111-1/+4
|
* (Jack:) On the Mac, use standard strerror() if using MSL C-library.Guido van Rossum1997-04-111-0/+2
|
* (Jack:) On the Mac, give syntax error on \r.Guido van Rossum1997-04-111-0/+11
|
* (Jack:) Align mapping entries to 4-words if USE_CACHE_ALIGNED is defined.Guido van Rossum1997-04-112-0/+6
|
* (Jack:) fopen arg typo (?) "rw" changed to "rb".Guido van Rossum1997-04-111-1/+1
|
* (Jack:) Mac only: get GUSI errno.h values too.Guido van Rossum1997-04-111-0/+5
|
* (Jack+Guido:) interpret ../ in basejoin() according to RFC1808.Guido van Rossum1997-04-111-0/+7
|
* Open files in binary mode.Guido van Rossum1997-04-111-4/+4
|
* (Jack:) Better MacOS support.Guido van Rossum1997-04-111-0/+10
|
* (Jack:) Recognize PNG files.Guido van Rossum1997-04-111-0/+12
|
* Remove the Emacs shell-script line. It's not a shell script.Guido van Rossum1997-04-111-1/+0
|
* From: Clarence Gardner <clarence@king.silcom.com>Guido van Rossum1997-04-111-2/+2
| | | | | | 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.
* The default path components are now all relative instead of absolute paths.Guido van Rossum1997-04-111-6/+10
| | | | | | 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.
* Completely revamped the way the default path is constructed.Guido van Rossum1997-04-111-34/+531
| | | | | | | 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.)
* Pass VERSION and VPATH into getpath.c.Guido van Rossum1997-04-111-0/+2
|
* Oops, added <URL:...> around the URL.Guido van Rossum1997-04-111-1/+1
|
* (Sjoerd:) Incorporate `build number' stuff.Guido van Rossum1997-04-111-2/+8
|
* (Sjoerd:) Install getbuildinfo.c in config/ so extensions can use it.Guido van Rossum1997-04-111-0/+1
|
* Bugfix by Sjoerd:Guido van Rossum1997-04-111-1/+5
| | | | | /* x_ocount is in bytes, wheras play.samples is in frames */ /* we want frames */
* base64 support by Sjoerd.Guido van Rossum1997-04-111-11/+25
|
* Added note about SWIG (replacing a whole lot of nonsense about howGuido van Rossum1997-04-111-27/+10
| | | | difficult it is to do).
* Use uuencoded test images.Guido van Rossum1997-04-097-166/+3333
|
* Don't just die when an error is not defined; print a warning instead.Guido van Rossum1997-04-091-4/+9
| | | | This for errno-challenged platforms like Windows.
* Try calling getpid() from /usr/lib/libc.so instead of some otherGuido van Rossum1997-04-091-4/+1
| | | | random things.
* Use TESTFN instead of /etc/passwd and /dev/null as test files.Guido van Rossum1997-04-091-5/+12
|
* Tweaks to keep the Microsoft compiler quiet.Guido van Rossum1997-04-095-18/+18
|
* Tweaks to keep the Microsoft compiler quier.Guido van Rossum1997-04-098-19/+36
|
* Remove unused variable.Guido van Rossum1997-04-091-1/+0
|
* Remove two unised variables.Guido van Rossum1997-04-091-2/+0
|
* Got rid of the static decl of PyCObject_Import, which was a 1.4Guido van Rossum1997-04-091-19/+4
| | | | compatibility hack.
* Give PyErr_Format a new name and make it static.Guido van Rossum1997-04-091-0/+5
|
* support module for cPickleGuido van Rossum1997-04-091-0/+17
|
* Jim Fulton's version 2.2.Guido van Rossum1997-04-091-2810/+2931
|
* Unknown changes by Jim Fulton.Guido van Rossum1997-04-091-199/+140
|
* Changed the way the C API was exported. Jim Fulton.Guido van Rossum1997-04-091-39/+47
|
* New version by Digital Creations, supports binary format compatibleGuido van Rossum1997-04-091-427/+785
| | | | with cPickle.
* Ping's latest. Fixes triple quoted strings ending in oddGuido van Rossum1997-04-091-20/+31
| | | | #backslashes, and other stuff I don't know.
* NewMovieFromFile has extra parameter and return valueJack Jansen1997-04-092-2/+2
|
* Enabled resID input/output parameter to NewMovieFromFile. This changesJack Jansen1997-04-093-13/+192
| | | | | the Python interface, unfortunately. Added a few calls that were blacklisted for no apparent reason.
* while (1) -> while 1. Sorry.Guido van Rossum1997-04-081-1/+1
|