Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update author information. | Fred Drake | 2000-10-28 | 1 | -2/+2 |
| | |||||
* | (py-goto-beginning-of-tqs): When searching backwards for the matching | Barry Warsaw | 2000-10-27 | 1 | -4/+8 |
| | | | | | | delimiter, watch out for backslash escaped delimiters. Also use = instead of eq for character comparison (because a character is = to it's integer value, but not eq to it). | ||||
* | Added the -D/--docstrings option for extraction of unmarked module, | Barry Warsaw | 2000-10-27 | 1 | -40/+82 |
| | | | | class, method, and function docstrings. | ||||
* | Explained that os.path.basename() may return something different from the | Fred Drake | 2000-10-26 | 1 | -1/+5 |
| | | | | | | basename program, as suggested by Gregor Hoffleit <gregor@hoffleit.de>. This closes bug #119485. | ||||
* | Do not require packages that are not needed. | Fred Drake | 2000-10-26 | 2 | -4/+0 |
| | |||||
* | Normalize the HTML generated for table headers. | Fred Drake | 2000-10-26 | 1 | -7/+10 |
| | |||||
* | Minor simplification. | Fred Drake | 2000-10-26 | 1 | -2/+1 |
| | |||||
* | Update the dependency information to allow the other Makefiles to handle | Fred Drake | 2000-10-26 | 1 | -34/+25 |
| | | | | | as much of this as possible. Avoids propogating information about how various outputs relate (or don't!). | ||||
* | Noted that building the info version requires the HTML::Element package, | Fred Drake | 2000-10-26 | 1 | -1/+8 |
| | | | | and provided instructions for getting it installed. | ||||
* | All acknowledgements have been moved to the Doc/ACKS file. | Fred Drake | 2000-10-26 | 1 | -25/+21 |
| | | | | | | | Adjusted to reflect the rename of Setup.in to Setup.dist. Added pointer to the "Distributing Python Modules" manual in the appropriate place. | ||||
* | Update build instructions to reflect the rename from Setup.in to Setup.dist. | Fred Drake | 2000-10-26 | 1 | -10/+11 |
| | | | | | | | Clarify when this file is created automatically and do not advocate creating it unless needed. Explain that Setup never gets overwritten. | ||||
* | Test for and create Modules/Setup in the configure script if it does not | Fred Drake | 2000-10-26 | 2 | -405/+448 |
| | | | | already exist. | ||||
* | Rename Setup.in to Setup.dist, and assume that configure will create | Fred Drake | 2000-10-26 | 6 | -17/+12 |
| | | | | Setup (instead of creating it from the Makefile). | ||||
* | Lots of small markup adjustments for consistency with the rest of the | Fred Drake | 2000-10-26 | 2 | -70/+72 |
| | | | | documentation. | ||||
* | Update a comment to be correct. | Fred Drake | 2000-10-26 | 1 | -3/+3 |
| | |||||
* | Remove bogus stdout redirection and use of sys.__stdout__; use | Fred Drake | 2000-10-26 | 1 | -46/+42 |
| | | | | augmented print statement instead. | ||||
* | Remove bogus stdout redirection and use of sys.__stdout__; use | Fred Drake | 2000-10-26 | 1 | -32/+28 |
| | | | | augmented print statement instead. | ||||
* | Typo: shorted --> shorter | Fred Drake | 2000-10-25 | 1 | -1/+1 |
| | | | | This closes bug #117706. | ||||
* | Patch 102114, Bug 11725. On OpenBSD (but apparently not on the other | Guido van Rossum | 2000-10-25 | 1 | -2/+7 |
| | | | | BSDs) you need a leading underscore in the dlsym() lookup name. | ||||
* | Fix two typos in __imul__. Closes Bug #117745. | Guido van Rossum | 2000-10-25 | 1 | -2/+2 |
| | |||||
* | Add IDLE wish: access items of arrays | Guido van Rossum | 2000-10-25 | 1 | -0/+1 |
| | |||||
* | Since LookupError can be raised by sys.setdefaultencoding(), we should not | Fred Drake | 2000-10-25 | 1 | -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 method | Fred Drake | 2000-10-25 | 1 | -0/+1 |
| | | | | was added in 2.0. | ||||
* | Additions from Marc-Andre Lemburg <mal@lemburg.com>, documenting | Fred Drake | 2000-10-25 | 1 | -1/+21 |
| | | | | getdefaultencoding() and setdefaultencoding(). | ||||
* | Several additions and updates based on text from Marc-Andre Lemburg | Fred Drake | 2000-10-25 | 1 | -123/+221 |
| | | | | | | <mal@lemburg.com>. Lots of markup reformatting to make it easier for me to read & maintain. | ||||
* | Many changes. | Jeremy Hylton | 2000-10-25 | 2 | -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.txt | Jeremy Hylton | 2000-10-25 | 2 | -1354/+1212 |
| | |||||
* | Small optimizations in dispatch method: 1) lookup node's __class__ once | Jeremy Hylton | 2000-10-25 | 2 | -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 node | Jeremy Hylton | 2000-10-25 | 4 | -0/+518 |
| | | | | structure (ast.txt). Usage is python astgen.py > ast.py. | ||||
* | Try to clarify when the Modules/Setup file should be edited. Added | Fred Drake | 2000-10-25 | 1 | -19/+32 |
| | | | | | | information about the --with-pydebug option to configure. This closes bug #117070. | ||||
* | Also point TK_LIBRARY to the appropriate directory. | Guido van Rossum | 2000-10-25 | 1 | -3/+4 |
| | | | | Changed the landmark to tclIndex, which should occur in both. | ||||
* | Rename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number for | Fred Drake | 2000-10-25 | 1 | -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 for | Fred Drake | 2000-10-25 | 1 | -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 Drake | 2000-10-25 | 1 | -1/+1 |
| | |||||
* | Minor addition; add a little formatting to the release information that | Fred Drake | 2000-10-25 | 1 | -0/+2 |
| | | | | will be added to Doc/perl/l2hinit.perl shortly. | ||||
* | Make this actually work now that the tool is checked in here instead of | Fred Drake | 2000-10-24 | 1 | -0/+1 |
| | | | | just sitting around in my working directory. | ||||
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 16 | -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 it | Guido van Rossum | 2000-10-24 | 1 | -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äbel | 2000-10-24 | 2 | -1/+14 |
| | |||||
* | Fix bug in prepare_input_source (patched by Paul P., sourceforge.net down | Lars Gustäbel | 2000-10-24 | 1 | -1/+1 |
| | | | | now, so can't find number). | ||||
* | Updated output. | Lars Gustäbel | 2000-10-24 | 1 | -1/+6 |
| | |||||
* | Added some more tests here and there. | Lars Gustäbel | 2000-10-24 | 1 | -0/+84 |
| | |||||
* | Added entries for the xml.dom.minidom module. | Fred Drake | 2000-10-24 | 2 | -0/+2 |
| | |||||
* | Paul Prescod <paul@prescod.net>: | Fred Drake | 2000-10-24 | 1 | -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 too | Fred Drake | 2000-10-24 | 1 | -6/+6 |
| | | | | distracting. | ||||
* | Remove some obsolete files, and update the README. | Fred Drake | 2000-10-23 | 3 | -113/+0 |
| | |||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 9 | -249/+246 |
| | |||||
* | Make reindent.py happy (lots of trailing whitespace removed). | Fred Drake | 2000-10-23 | 9 | -104/+103 |
| | |||||
* | Make reindent happy, but not in the way it planned! | Fred Drake | 2000-10-23 | 1 | -3/+3 |
| | |||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 70 | -1261/+1229 |
| |