Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Make \versionadded and \versionchanged less prominant -- neither bold | Fred Drake | 1999-02-02 | 2 | -5/+5 |
| | | | | nor a separate paragraph. | ||||
* | Move \versionadded macros to end of descriptions. | Fred Drake | 1999-02-02 | 1 | -4/+3 |
| | |||||
* | Patch by Sjoerd Mullender to placate /F: | Guido van Rossum | 1999-02-02 | 1 | -2/+6 |
| | | | | | Clarified (hopefully :-) the documentation of elements and attributes variables. | ||||
* | Patch by Sjoerd Mullender to placate /F: | Guido van Rossum | 1999-02-02 | 1 | -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 take | Fred Drake | 1999-02-02 | 1 | -6/+8 |
| | | | | a process exit status as a parameter. | ||||
* | put the preferences file in a folder called "Python" inside the prefs ↵ | Just van Rossum | 1999-02-02 | 2 | -11/+38 |
| | | | | folder, just like the IDE does -- jvr | ||||
* | Replaced by Pythonpath.r | Jack Jansen | 1999-02-02 | 1 | -0/+0 |
| | |||||
* | Windows sound playing module, by Fredrik Lundh. | Guido van Rossum | 1999-02-02 | 1 | -0/+71 |
| | |||||
* | Add _P_WAIT etc. for NT. | Guido van Rossum | 1999-02-01 | 1 | -0/+12 |
| | |||||
* | Special-case _P_WAIT etc. for NT. | Guido van Rossum | 1999-02-01 | 1 | -4/+7 |
| | |||||
* | Add current dir or paths of file args to sys.path. | Guido van Rossum | 1999-02-01 | 1 | -0/+7 |
| | |||||
* | spawnv, spawnve docstrings: added mode parameter; this is required! | Fred Drake | 1999-02-01 | 1 | -2/+4 |
| | |||||
* | Added module synopsis. | Fred Drake | 1999-02-01 | 1 | -1/+2 |
| | |||||
* | Take out just about everything and refer the reader to the os module. | Fred Drake | 1999-02-01 | 1 | -516/+15 |
| | |||||
* | Make the text generic, and call it os.path instead of posixpath. | Fred Drake | 1999-02-01 | 1 | -27/+24 |
| | |||||
* | Remove all references to posixpath; only refer to os.path. | Fred Drake | 1999-02-01 | 1 | -20/+17 |
| | | | | Formalize the xstat() documentation. | ||||
* | Add canonic() function -- for brand new bdb.py feature. | Guido van Rossum | 1999-02-01 | 1 | -0/+4 |
| | |||||
* | Protect against accessing an empty stack. | Guido van Rossum | 1999-02-01 | 1 | -2/+11 |
| | |||||
* | PyPcre_expand(): Fixed two memory leaks, where a PyString_FromString() | Barry Warsaw | 1999-02-01 | 1 | -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 -- jvr | Just van Rossum | 1999-02-01 | 1 | -8/+2 |
| | |||||
* | OSError description: "as the by the" --> "as the" | Fred Drake | 1999-02-01 | 1 | -3/+3 |
| | |||||
* | Oops, the patch for NeXT always replaced waitpid() with wait4() -- | Guido van Rossum | 1999-02-01 | 1 | -0/+4 |
| | | | | this doesn't exist everywhere, so go back to using #ifdef NeXT. | ||||
* | Patch by Sjoerd Mullender for better compatibility with the version | Guido van Rossum | 1999-02-01 | 1 | -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 -- jvr | Just van Rossum | 1999-02-01 | 36 | -7998/+0 |
| | |||||
* | minor cleanup of last patch -- jvr | Just van Rossum | 1999-02-01 | 1 | -1/+0 |
| | |||||
* | Added PythonIDE to the applet list; added destination filename support for ↵ | Just van Rossum | 1999-02-01 | 1 | -6/+8 |
| | | | | applets -- jvr | ||||
* | removed turd resources left by my former MacCVS client | Just van Rossum | 1999-02-01 | 2 | -0/+0 |
| | | | | -- jvr | ||||
* | Add $(APPLICATION) or :Mac:Tools:IDE at the very start of sys.path to ↵ | Just van Rossum | 1999-01-31 | 1 | -4/+5 |
| | | | | improve startup time -- jvr |