summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch 102114, Bug 11725. On OpenBSD (but apparently not on the otherGuido van Rossum2000-10-251-2/+7
| | | | BSDs) you need a leading underscore in the dlsym() lookup name.
* Fix two typos in __imul__. Closes Bug #117745.Guido van Rossum2000-10-251-2/+2
|
* Add IDLE wish: access items of arraysGuido van Rossum2000-10-251-0/+1
|
* Since LookupError can be raised by sys.setdefaultencoding(), we should notFred Drake2000-10-251-1/+2
| | | | | document it as only being a base class, not matter how unlikely this is to affect normal users.
* Marc-Andre Lemburg <mal@lemburg.com> noted that the encode() string methodFred Drake2000-10-251-0/+1
| | | | was added in 2.0.
* Additions from Marc-Andre Lemburg <mal@lemburg.com>, documentingFred Drake2000-10-251-1/+21
| | | | getdefaultencoding() and setdefaultencoding().
* Several additions and updates based on text from Marc-Andre LemburgFred Drake2000-10-251-123/+221
| | | | | | <mal@lemburg.com>. Lots of markup reformatting to make it easier for me to read & maintain.
* Many changes.Jeremy Hylton2000-10-252-440/+290
| | | | | | | | | | | | | | | | | | | | | Reformatting -- long lines, "[ ]" -> "[]", a few indentation nits. Replace calls to Node function (which constructed ast nodes) with calls to actual constructors imported from ast module. Optimize com_node (most frequently used method) for the common case -- the appropriate method is found in _dispatch. Fix com_augassign to use class object's rather than node names (rendered invalid by recent changes to ast) Remove expensive tests for sequence-ness in com_stmt and com_append_stmt. These tests should never fail; if they do, something is really broken and exception will be raised elsewhere. Fix com_stmt and com_append_stmt to use isinstance rather than testing's type slot of ast node (this slot disappeared with recent changes to ast).
* Generated from rev 1.1 of ast.txtJeremy Hylton2000-10-252-1354/+1212
|
* Small optimizations in dispatch method: 1) lookup node's __class__ onceJeremy Hylton2000-10-252-24/+28
| | | | | and store in local; 2) define _preorder to be dispatch (rather than method that called dispatch).
* Support for generation of ast.py from simple description of nodeJeremy Hylton2000-10-254-0/+518
| | | | structure (ast.txt). Usage is python astgen.py > ast.py.
* Try to clarify when the Modules/Setup file should be edited. AddedFred Drake2000-10-251-19/+32
| | | | | | information about the --with-pydebug option to configure. This closes bug #117070.
* Also point TK_LIBRARY to the appropriate directory.Guido van Rossum2000-10-251-3/+4
| | | | Changed the landmark to tclIndex, which should occur in both.
* Rename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number forFred Drake2000-10-251-7/+27
| | | | | | | | | | | | whatever is being documented, not necessarily Python. (These tools are also used for the How-To documents, etc.) get_version_text(): New function. Returns HTML fragment describing the software version and documentation date. bot_navigation_panel(): Include the result of get_version_text() at the end, so the information is available on every page.
* Rename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number forFred Drake2000-10-251-5/+8
| | | | | whatever is being documented, not necessarily Python. (These tools are also used for the How-To documents, etc.)
* Remove some HTML from the PYTHONDOCS fragment defined here.Fred Drake2000-10-251-1/+1
|
* Minor addition; add a little formatting to the release information thatFred Drake2000-10-251-0/+2
| | | | will be added to Doc/perl/l2hinit.perl shortly.
* Make this actually work now that the tool is checked in here instead ofFred Drake2000-10-241-0/+1
| | | | just sitting around in my working directory.
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-2416-144/+186
| | | | | | Changes to error messages to increase consistency & clarity. This (mostly) closes SourceForge patch #101839.
* Insert the current directory to the front of sys.path -- and remove itGuido van Rossum2000-10-241-0/+5
| | | | | | | | at the end. This fixes a problem where python Lib/test/test_import.py failed while "make test" succeeded.
* Added a test case for the saxutils.prepare_input_source setSystemId bug.Lars Gustäbel2000-10-242-1/+14
|
* Fix bug in prepare_input_source (patched by Paul P., sourceforge.net downLars Gustäbel2000-10-241-1/+1
| | | | now, so can't find number).
* Updated output.Lars Gustäbel2000-10-241-1/+6
|
* Added some more tests here and there.Lars Gustäbel2000-10-241-0/+84
|
* Added entries for the xml.dom.minidom module.Fred Drake2000-10-242-0/+2
|
* Paul Prescod <paul@prescod.net>:Fred Drake2000-10-241-0/+614
| | | | | | | | | Documentation for the xml.dom.minidom module & Python DOM API. FLD: I have revised the markup in some places and added a few minor details to Paul's text, but that's it. Given the substantial structural differences with the bulk of the presentation, I will be making additional revisions over the next few days.
* Remove second horizontal line below table headers; it is just tooFred Drake2000-10-241-6/+6
| | | | distracting.
* 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
|