summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* Latest from Jeffrey Ollie.Guido van Rossum1997-05-092-1473/+1680
| | | | Infinite failure stack, some bugs fixed (fastmap, star_jump, register bug).
* Avoid warning from gcc on Linux about dropping const.Guido van Rossum1997-05-091-1/+1
|
* Oops, missed some renamings.Guido van Rossum1997-05-071-5/+5
|
* Instead of importing graminit.h whenever one of the three grammar 'root'Guido van Rossum1997-05-071-3/+6
| | | | symbols is needed, define these in Python.h with a Py_ prefix.
* On popular demand, re-enable the readline event hook.Guido van Rossum1997-05-071-1/+0
|
* In makesockaddr(), if we don't know the address family, don't raise anGuido van Rossum1997-05-071-3/+6
| | | | exception -- return it as a tuple. Seems useful in promiscuous mode.
* Checkin of Jack's buffer mods.Guido van Rossum1997-05-051-0/+53
| | | | Not really checked, but didn't fail any tests either...
* Massive changes for separate thread state management.Guido van Rossum1997-05-051-27/+64
| | | | | All per-thread globals are moved into a struct which is manipulated separately.
* Add -lgl and -lm for imgfile. Better way to configure zlib.Guido van Rossum1997-05-051-7/+3
|
* Add PYTHONHOME to the usage message.Guido van Rossum1997-04-301-0/+2
|
* One copy is enough; we already had resource.c.Guido van Rossum1997-04-301-240/+0
|
* Keep gcc -Wall happy.Guido van Rossum1997-04-294-29/+4
|
* Renamed inittab.Guido van Rossum1997-04-291-1/+1
|
* Track updates in rename2.h.Guido van Rossum1997-04-291-14/+2
|
* Added -I$(srcdir) to line for glmodule so we can move cgensupport.h here.Guido van Rossum1997-04-291-1/+1
|
* Change the exception objects to have the string value "os.error"Guido van Rossum1997-04-291-2/+2
| | | | instead "posix.error" or "nt.error".
* Adapt Mac specific code to new universal headers (I think -- this isGuido van Rossum1997-04-291-3/+3
| | | | Jack's code).
* Hm. What was previously checked in was the edited *output* of the oldGuido van Rossum1997-04-291-704/+693
| | | | | | | 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).
* Moved here from ../Python and quickly renamed.Guido van Rossum1997-04-291-128/+128
|
* Added cgensupport.o.Guido van Rossum1997-04-291-0/+3
|
* Added cgensupport.c to Setup line for gl module.Guido van Rossum1997-04-291-1/+8
| | | | Addeed Andrew Kuchling's zlib module.
* Added Jeremy's resource module.Guido van Rossum1997-04-291-0/+240
|
* Quickly renamed.Guido van Rossum1997-04-292-250/+247
|
* Added Andrew Kuchling's zlib module.Guido van Rossum1997-04-291-0/+670
|
* Moved rename2's macros relevant to this module here and added commentGuido van Rossum1997-04-291-0/+15
| | | | about the file's obsolescence.
* 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-114-29/+29
|
* Keep gcc -Wall and Microsoft VC happy.Guido van Rossum1997-04-111-7/+7
|
* 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:) 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
|
* Remove the Emacs shell-script line. It's not a shell script.Guido van Rossum1997-04-111-1/+0
|
* 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
|
* Bugfix by Sjoerd:Guido van Rossum1997-04-111-1/+5
| | | | | /* x_ocount is in bytes, wheras play.samples is in frames */ /* we want frames */
* Tweaks to keep the Microsoft compiler quier.Guido van Rossum1997-04-094-11/+20
|
* Give PyErr_Format a new name and make it static.Guido van Rossum1997-04-091-0/+5
|
* 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
|
* New version by Sjoerd, with support for IRIX 6 audio library.Guido van Rossum1997-04-031-340/+3035
|
* Added replace() implementation by Perry Stoll (debugged and reformatted by me).Guido van Rossum1997-04-021-1/+167
|
* Win32 precision clock() -- Mark Hammond.Guido van Rossum1997-04-021-1/+44
|
* Support include statement :-(Guido van Rossum1997-04-021-0/+1
|
* Support assert stmt.Guido van Rossum1997-04-021-1/+32
|
* remove ConflictErrorGuido van Rossum1997-03-311-1/+0
|
* As per GvR recomendation, added support for a 'sync' attribute for theRoger E. Masse1997-03-251-0/+18
| | | | GDBM module.
* New form of PyFPE_END_PROTECT macro.Guido van Rossum1997-03-146-13/+13
|