summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove some obsolete files, and update the README.Fred Drake2000-10-233-113/+0
|
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-239-249/+246
|
* Make reindent.py happy (lots of trailing whitespace removed).Fred Drake2000-10-239-104/+103
|
* Make reindent happy, but not in the way it planned!Fred Drake2000-10-231-3/+3
|
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-2370-1261/+1229
|
* Use 4-space indents.Fred Drake2000-10-231-8/+8
|
* Clean up the temporary file when done with it.Fred Drake2000-10-231-0/+4
|
* Make sure the temporary file is cleaned up even when we raise TestSkipped.Fred Drake2000-10-231-21/+24
|
* Added note saying to use test_support.TESTFN for a temporary filename,Fred Drake2000-10-231-0/+5
| | | | and be clear that you need to clean it up when done.
* Added exception to the rule that the buffer returned by PyString_AsString()Fred Drake2000-10-231-4/+17
| | | | | | | | | | | | and PyString_AsStringAndSize() for strings that were just created using PyString_FromStringAndSize(NULL, n). This closes bug #117377. Added warning about passing NULL to the concrete object functions; many of them use the appropriate Py<Type>_Check() test, but do not check for NULL. "de-allocated" --> "deallocated"
* Correct the name of a parameter in the description of the register()Fred Drake2000-10-231-1/+1
| | | | | | function. This closes bug #117467.
* Added test for regression on SourceForge bug #117490.Fred Drake2000-10-232-0/+30
|
* Maildir.__init__(): Make sure self.boxes is set.Fred Drake2000-10-231-3/+3
| | | | This closes SourceForge bug #117490.
* struct.pack has become picky about h (short) and H (unsigned short).Jack Jansen2000-10-222-2/+2
|
* Updated because developer option isn't distributed separately anymore.Jack Jansen2000-10-221-14/+2
|
* Removed, no longer pertinent.Jack Jansen2000-10-221-0/+0
|
* Final version used for 2.0 distribution.Jack Jansen2000-10-2233-17/+32
|
* More names.Fred Drake2000-10-221-0/+4
|
* Added missing entry for invert() function.Fred Drake2000-10-221-0/+60
| | | | | Added table mapping abstract operations to syntax to functions, based on a suggestion from Bob Weiner <weiner@beopen.com>.
* Minor tweaks to catch up with the current code in a few spots.Greg Ward2000-10-221-16/+147
| | | | Wrote the "Distutils Configuration Files" section.
* Flesh out the "LaTeX Primer" some more.Fred Drake2000-10-201-7/+74
|
* t_bootstram(): Use PySys_WriteStderr() instead of fprintf(stderr,...).Fred Drake2000-10-201-1/+1
| | | | This closes bug #117324.
* more edits to make the text fit (jvr)Just van Rossum2000-10-201-5/+4
|
* oops, that one caused a syntax error... (jvr)Just van Rossum2000-10-201-1/+1
|
* edits to make the 2.0 copyright fit in the about box again... (jvr)Just van Rossum2000-10-201-8/+9
|
* Cleaned uthread dependencies (jvr)Just van Rossum2000-10-201-4/+8
|
* Hm, I never checked in my incomplete "run with interpreter" mods. UI is ↵Just van Rossum2000-10-201-22/+63
| | | | there (but is disabled), functionality is not there.
* fixed 2.0 compat bugJust van Rossum2000-10-201-1/+1
|
* Update the display of some floating point values at the interactive promptFred Drake2000-10-201-6/+6
| | | | | | | | | to reflect current behavior. This closes SourceForge bug #117305. Made a reference to the library reference a hyperlink. Fixed some minor markup nits.
* Added PyMac_OutputSeen(), which acknowledges all current output in the stdio ↵Jack Jansen2000-10-193-0/+23
| | | | window, i.e. it acts like input has been read insofar as the keep-console-open option is interested.
* Add Numerical:Lib:Packages to sys.path. A workaround for distutils not working.Jack Jansen2000-10-191-0/+1
|
* Ready for 2.0Jack Jansen2000-10-192-15/+18
|
* Oops, all the options were off-by-one. Reported by Tom Bridgman.Jack Jansen2000-10-191-0/+1
|
* Fixed balloon help for options. Sort-of reported by Russell Finn.Jack Jansen2000-10-194-31/+35
|
* Fixed balloon help for startup options. Reported by Russell Finn.Jack Jansen2000-10-191-9/+13
|
* Removed try/except TypeError around calling the ae handler function, it ↵Jack Jansen2000-10-191-8/+6
| | | | masksprogrammer errors and obfuscates the stacktrace. Suggested by Tattoo Mabonzo K.
* Oops, not only the Popt versions were wrong, the resources were also short.Jack Jansen2000-10-192-0/+0
|
* Different phrasing of keepconsole options, suggested by David Goodger.Jack Jansen2000-10-192-0/+0
|
* Use MacOS.OutputSeen() on menuselections: it treats a menu selection in the ↵Jack Jansen2000-10-191-0/+2
| | | | same way as input to stdin (i.e. as an ack of the output that went before). This makes the CGI tools work nicely for Quit.
* Use MacOS.OutputSeen() on menuselections. Removed KeepConsole code again. ↵Jack Jansen2000-10-191-4/+1
| | | | This solution is better: it treats a menu selection in the same way as input to stdin (i.e. as an ack of the output that went before).
* Remove the bzip2 archives from the "distfiles" target. There are notFred Drake2000-10-191-2/+2
| | | | enough downloads to keep this around.
* Fixed a bug that caused namespace names to be reported as lists ratherLars Gustäbel2000-10-191-0/+2
| | | | than tuples.
* Two more names.Fred Drake2000-10-191-0/+2
|
* Helper scripts used in published the "development" snapshots of theFred Drake2000-10-192-0/+43
| | | | Python documentation.
* Revise the capitalization policy of \versionchanged explanation; theFred Drake2000-10-191-6/+132
| | | | | | | explanation must now be capitalized. This is more consistent with the \see* explanation fields. Added a lot of material to the "LaTeX Primer" section.
* Capitalize first letter of an explanation for a \versionchangedFred Drake2000-10-191-1/+1
| | | | annotation.
* Correction from David Bolen: the Windows version no longer crashesAndrew M. Kuchling2000-10-191-12/+5
| | | | | on trying to import a 1.5 module Bump the document version number
* Document the .lastindex and .lastgroup attributes of MatchObjectAndrew M. Kuchling2000-10-181-0/+10
|
* Make all the \seemodule explanations consistent: start with a capitalizedFred Drake2000-10-1810-20/+27
| | | | | | letter and end with proper punctuation. "Documenting Python" will be updated accordingly so that this will be editorial policy for the Python documentation.
* Capitalize & use periods for \seemodule explanation parameter.Fred Drake2000-10-181-5/+5
|