Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Back out some of the fine tuning; something in all that interacted | Fred Drake | 1999-02-09 | 1 | -19/+3 |
| | | | | | | badly in practice and botched the whole thing. Wasn't obvious when looking at the local effects (which worked), but completely broke entire pages. ;-( | ||||
* | Fix buglet in load_put -- the test for bad readline result tested the | Guido van Rossum | 1999-02-08 | 1 | -1/+1 |
| | | | | wrong variable. | ||||
* | Uwe Zessin. | Guido van Rossum | 1999-02-08 | 1 | -0/+1 |
| | |||||
* | Don't crash if a window no longer exists. | Guido van Rossum | 1999-02-08 | 1 | -1/+4 |
| | |||||
* | Restructured a bit. | Guido van Rossum | 1999-02-08 | 1 | -12/+16 |
| | |||||
* | The variable TESTPATH should be initialized to empty. | Guido van Rossum | 1999-02-08 | 1 | -1/+1 |
| | | | | The test code is now accessed as a package. | ||||
* | Update documentation to reflect changes to Queue.py by Tim Peters. | Guido van Rossum | 1999-02-08 | 1 | -15/+29 |
| | |||||
* | Tim Peters: | Guido van Rossum | 1999-02-08 | 1 | -42/+40 |
| | | | | | | | | | | | | | | + Implements a put_nowait method. + Adds a corresponding Queue.Full exception. + Simplifies the implementation by adding optional "block" args to get() and put(), and makes the old get_nowait() and new put_nowait() one-line redirections to get() and put(). + Uses (much) simpler logic for the nowait cases. + Regularizes the doc strings to something closer to "Guido style" <wink>. + Converts two stray tabs into spaces. + Removes confusing verbiage about the queue "not being available" from the docstrings -- never knew what that meant as a user, and after digging into the implementation still didn't know what it was trying to say. | ||||
* | The writelines() function was never tested and contained numerous bugs | Guido van Rossum | 1999-02-08 | 1 | -4/+16 |
| | | | | | | (including a docstring saying "blah"). Fixed all this. (Please review for potential memory leaks!) | ||||
* | Put a try-except around the "image delete" call in Image.__del__ to | Guido van Rossum | 1999-02-08 | 1 | -2/+6 |
| | | | | avoid tracebacks when the root is destroyed before the image object. | ||||
* | new dangerous script: it removes all apps (except sys.executable), shared ↵ | Just van Rossum | 1999-02-07 | 1 | -0/+59 |
| | | | | libs, (x)SYM files and xxx Data folders (in case xxx.prj exists) -- jvr | ||||
* | Added Ctl.as_Control and Menu.as_Menu methods, which take a resource as | Jack Jansen | 1999-02-07 | 6 | -0/+52 |
| | | | | argument and return a Control or Menu object. | ||||
* | Added a define USE_CORE_TOOLBOX, which includes six core toolbox modules | Jack Jansen | 1999-02-07 | 1 | -12/+21 |
| | | | | | into the config file. This define is also automatically set if USE_TOOLBOX is defined. | ||||
* | Added a define USE_CORE_TOOLBOX, which includes six core toolbox modules | Jack Jansen | 1999-02-07 | 1 | -1/+2 |
| | | | | into the config file. | ||||
* | Don't create symlinks to toolbox modules any more. | Jack Jansen | 1999-02-07 | 1 | -38/+38 |
| | |||||
* | Moved Ctl, Dlg, Menu, Qd, Res and Win modules to PythonCore. | Jack Jansen | 1999-02-07 | 46 | -96/+362 |
| | | | | Moved other toolbox modules to their own .slb file. | ||||
* | Added Extensions:img:Mac to default sys.path | Jack Jansen | 1999-02-06 | 1 | -0/+1 |
| | |||||
* | - img modules are no longer in PlugIns folder | Jack Jansen | 1999-02-06 | 13 | -11/+0 |
| | | | | - Added a dependency on toolboxmodules to icglue.cfm68k | ||||
* | img modules are no longer in PlugIns folder. | Jack Jansen | 1999-02-06 | 2 | -21/+2 |
| | |||||
* | Some weird symbol (M_I386) was used to decide whether to include the | Guido van Rossum | 1999-02-05 | 1 | -1/+1 |
| | | | | | audioop module; this was no longer defined. Use MS_WINDOWS instead. (I have a feeling that this was for the WATCOM port; too bad.) | ||||
* | Ehm, when we don't need to byteswap the data, don't go through an | Guido van Rossum | 1999-02-05 | 1 | -6/+4 |
| | | | | array object at all. | ||||
* | Two important fixes: | Guido van Rossum | 1999-02-05 | 1 | -3/+12 |
| | | | | | | | (1) on a little-endian platform, don't byteswap; (2) in _patchheader(), there was a missing self._file argument to a _write_long() call. | ||||
* | fixed problem with "reloading" sub-sub-modules -- jvr | Just van Rossum | 1999-02-05 | 1 | -3/+4 |
| | |||||
* | The encoding type was wrong, I think. | Guido van Rossum | 1999-02-05 | 1 | -0/+0 |
| | |||||
* | Should open files in binary mode! | Guido van Rossum | 1999-02-05 | 1 | -9/+2 |
| | | | | | | | | | | | Also finally get rid of some obsolete commented-out access statements. A note about the previous checkin: I believe it's correct, but I found something strange: the file Lib/test/audiotest.au in the Python distribution was evidently encoded in u-LAW format but had its encoding set to 2, i.e. linear-8. I hope that this is a mistake caused by some conversion program that produced this .au file; I just found it on a website. | ||||
* | Respond to suggestion from "Albert" <hat@se-46.wpa.wtb.tue.nl> to add | Fred Drake | 1999-02-05 | 1 | -6/+23 |
| | | | | | | | document titles to the list of files. Also added total page count and a note that comments should be directed to python-docs@python.org. | ||||
* | Shouldn't be treating linear-8 as u-law! | Guido van Rossum | 1999-02-05 | 1 | -1/+2 |
| | |||||
* | More magic to tighten up a little of the formatting. | Fred Drake | 1999-02-05 | 1 | -7/+26 |
| | |||||
* | Minor nit to prevent dropping a space in the HTML generation. | Fred Drake | 1999-02-05 | 1 | -2/+2 |
| | |||||
* | Add winsound -- by Toby Dickenson with permission. | Guido van Rossum | 1999-02-04 | 2 | -0/+130 |
| | |||||
* | Jim Fulton: this fixes seg faults with bad pickles like "c". | Guido van Rossum | 1999-02-04 | 1 | -3/+22 |
| | |||||
* | Document sameopenfile(), samestat(). | Fred Drake | 1999-02-03 | 1 | -3/+17 |
| | |||||
* | Document splitdrive(). | Fred Drake | 1999-02-03 | 1 | -2/+10 |
| | | | | | | For all split*(), these split path *into* pairs, not split path *in* pairs. "Into" can be used for transformations, "in" is for containment. | ||||
* | New test for ntpath module | Guido van Rossum | 1999-02-03 | 2 | -0/+43 |
| | |||||
* | New splitdrive() that knows about UNC paths (e.g., network paths like | Guido van Rossum | 1999-02-03 | 1 | -26/+50 |
| | | | | | | \\host\mountpoint\dir\file). By Larry Hastings. Also cleaned up some docstrings. | ||||
* | Portability fix for [f]statvfs() return tuple: no longer return the | Guido van Rossum | 1999-02-03 | 2 | -14/+9 |
| | | | | | | f_fsid field, since it's not a scalar on all systems supporting this call (in particular, it's a tuple of two longs on AIX). Since it's not particularly useful, just nuke it. Adapted the doc strings too. | ||||
* | Partly updated to reflect the new organization and the availability of CVS | Jack Jansen | 1999-02-03 | 1 | -44/+81 |
| | | | | access. Will still need a bit of work when all plugins are separated, probably. | ||||
* | Just's script to find non-7-bit-clean charactres in a source tree (slightly | Jack Jansen | 1999-02-03 | 1 | -0/+53 |
| | | | | modified by Jack to skip files that are binary despite the TEXT type). | ||||
* | updated to the new numpy build setup -- jvr | Just van Rossum | 1999-02-02 | 1 | -2/+8 |
| | |||||
* | Never mind, this belongs in the PC subdirectory, | Guido van Rossum | 1999-02-02 | 1 | -71/+0 |
| | | | | | and besides Toby Dickenson sent me a more functional (if lower level) wrapper around PlaySound. | ||||
* | re-checkin with "ISO-8859 translation" turned on. | Just van Rossum | 1999-02-02 | 12 | -58/+58 |
| | |||||
* | added some comments | Just van Rossum | 1999-02-02 | 1 | -1/+10 |
| | |||||
* | Fredrik Lundh fixes Sjoerd's patch... | Guido van Rossum | 1999-02-02 | 1 | -7/+7 |
| | | | | | """Sjoerd's version stores unbound methods. that's not good enough ;-) Here's an alternative implementation of fixdict.""" | ||||
* | Remove three items. | Fred Drake | 1999-02-02 | 1 | -9/+0 |
| | |||||
* | Fix the os/posix documentation issue. | Fred Drake | 1999-02-02 | 2 | -66/+730 |
| | |||||
* | Moved \versionadded to end of description sections. | Fred Drake | 1999-02-02 | 1 | -1/+1 |
| | |||||
* | Moved posixpath to os.path. | Fred Drake | 1999-02-02 | 1 | -1/+1 |
| | |||||
* | Added posixpath, winsound. | Fred Drake | 1999-02-02 | 1 | -4/+15 |
| | |||||
* | Change this to be os.path. | Fred Drake | 1999-02-02 | 1 | -66/+67 |
| | | | | | Use consistent parameter naming with the os documentation (paths always named "path" or "path1", "path2"...). | ||||
* | This seems to fix a problem with targeting from the indexes. | Fred Drake | 1999-02-02 | 1 | -1/+1 |
| |