summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove three items.Fred Drake1999-02-021-9/+0
|
* Fix the os/posix documentation issue.Fred Drake1999-02-022-66/+730
|
* Moved \versionadded to end of description sections.Fred Drake1999-02-021-1/+1
|
* Moved posixpath to os.path.Fred Drake1999-02-021-1/+1
|
* Added posixpath, winsound.Fred Drake1999-02-021-4/+15
|
* Change this to be os.path.Fred Drake1999-02-021-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 Drake1999-02-021-1/+1
|
* Make \versionadded and \versionchanged less prominant -- neither boldFred Drake1999-02-022-5/+5
| | | | nor a separate paragraph.
* Move \versionadded macros to end of descriptions.Fred Drake1999-02-021-4/+3
|
* Patch by Sjoerd Mullender to placate /F:Guido van Rossum1999-02-021-2/+6
| | | | | Clarified (hopefully :-) the documentation of elements and attributes variables.
* Patch by Sjoerd Mullender to placate /F:Guido van Rossum1999-02-021-4/+12
| | | | | | | | | Fix leaking of instances by removing the elements variable that we created on closing the parser. The elements variable is now created in the reset() method, so that the sequence close(); reset(); ... works. Also, add the name of the entity reference that wasn't found to the error message.
* Added documentation to the docstrings for the W*() functions that takeFred Drake1999-02-021-6/+8
| | | | a process exit status as a parameter.
* put the preferences file in a folder called "Python" inside the prefs ↵Just van Rossum1999-02-022-11/+38
| | | | folder, just like the IDE does -- jvr
* Replaced by Pythonpath.rJack Jansen1999-02-021-0/+0
|
* Windows sound playing module, by Fredrik Lundh.Guido van Rossum1999-02-021-0/+71
|
* Add _P_WAIT etc. for NT.Guido van Rossum1999-02-011-0/+12
|
* Special-case _P_WAIT etc. for NT.Guido van Rossum1999-02-011-4/+7
|
* Add current dir or paths of file args to sys.path.Guido van Rossum1999-02-011-0/+7
|
* spawnv, spawnve docstrings: added mode parameter; this is required!Fred Drake1999-02-011-2/+4
|
* Added module synopsis.Fred Drake1999-02-011-1/+2
|
* Take out just about everything and refer the reader to the os module.Fred Drake1999-02-011-516/+15
|
* Make the text generic, and call it os.path instead of posixpath.Fred Drake1999-02-011-27/+24
|
* Remove all references to posixpath; only refer to os.path.Fred Drake1999-02-011-20/+17
| | | | Formalize the xstat() documentation.
* Add canonic() function -- for brand new bdb.py feature.Guido van Rossum1999-02-011-0/+4
|
* Protect against accessing an empty stack.Guido van Rossum1999-02-011-2/+11
|
* PyPcre_expand(): Fixed two memory leaks, where a PyString_FromString()Barry Warsaw1999-02-011-3/+26
| | | | | | | | | | | was appended to a list. Lists are reference count neutral, so the string must be DECREF'd. Also added some checks for the return value of PyList_Append(). Note: there are still some memory problems reported by Purify (I get two Array Bounds Reads still and an Unitialized Memory Read). Also, in scanning the code, there appears to be some potential problems where return values aren't checked. To much to attack now though.
* better sys.path munging when running scripts -- jvrJust van Rossum1999-02-011-8/+2
|
* OSError description: "as the by the" --> "as the"Fred Drake1999-02-011-3/+3
|
* Oops, the patch for NeXT always replaced waitpid() with wait4() --Guido van Rossum1999-02-011-0/+4
| | | | this doesn't exist everywhere, so go back to using #ifdef NeXT.
* Patch by Sjoerd Mullender for better compatibility with the versionGuido van Rossum1999-02-011-0/+25
| | | | | | | | | from Python 1.5.1: If after __init__ finishes no new elements variable was created, this patch will search the instance's namespace for all attributes whose name start with start_ or end_ and put their value in a new elements instance variable.
* removed old IDE stuff -- jvrJust van Rossum1999-02-0136-7998/+0
|
* minor cleanup of last patch -- jvrJust van Rossum1999-02-011-1/+0
|
* Added PythonIDE to the applet list; added destination filename support for ↵Just van Rossum1999-02-011-6/+8
| | | | applets -- jvr
* removed turd resources left by my former MacCVS clientJust van Rossum1999-02-012-0/+0
| | | | -- jvr
* Add $(APPLICATION) or :Mac:Tools:IDE at the very start of sys.path to ↵Just van Rossum1999-01-311-4/+5
| | | | improve startup time -- jvr
* There are now three possible ways to run the IDE:Just van Rossum1999-01-301-6/+13
| | | | | | - this file dropped onto the interpreter - applet built by BuildApplet (contains only __main__) - applet built by BuildIDE (contains all IDE modules)
* ??? adding this file somehow failed -- jvrJust van Rossum1999-01-301-0/+395
|
* First Checked In.Just van Rossum1999-01-3028-0/+8612
|
* added ntpath and win32api to MAC_MAYMISS_MODULES -- jvrJust van Rossum1999-01-301-1/+3
|
* changed chars in source > chr(127) to ASCII: CVS corrupted them -- jvrJust van Rossum1999-01-301-3/+3
|
* set 'preload' attribute for __main__ PYC resource -- jvrJust van Rossum1999-01-301-0/+3
|
* skip 'vers' resource when copying resources from templeate -- jvrJust van Rossum1999-01-301-1/+1
|
* added some try/excepts so it also works when certain projects/folders are ↵Just van Rossum1999-01-301-2/+10
| | | | not available -- jvr
* Removed NumPy install code: it's obsolete -- jvrJust van Rossum1999-01-301-6/+0
|
* Fixed two typo's (Plugins -> PlugIns) and added some explicit path munging ↵Just van Rossum1999-01-301-5/+5
| | | | to allow the script to also work from the Scripts folder. Somehow either of these fixes solved a problem where it suddenly refused to make a PythonCore alias in the Extensions folder. -- jvr
* added "delay console window until needed" preferenceJust van Rossum1999-01-302-0/+0
|
* Added pascal-style string name of preference file resource, and bracketedJack Jansen1999-01-301-1/+6
| | | | C struct declarations with #ifndef rez
* From: Mike Orr <mso@oz.net>Guido van Rossum1999-01-301-1/+1
| | | | | | | | | | | In the docstring of ConfigParser.py (Python 1.5.2b1): read(*filenames) -- read and parse the list of named configuration files should be: read(filenames) -- read and parse the list of named configuration files The method accepts a list, not a bunch of positional arguments. Which is good, the list is much more convenient.
* Embarrassing: remove a debug print statement from set_break() for theGuido van Rossum1999-01-291-1/+0
| | | | second time!
* Updated comments on version of XML package needed.Fred Drake1999-01-291-1/+2
|