summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* revise xml commentJeremy Hylton2000-10-161-2/+2
|
* Updated the XML package comment.Fred Drake2000-10-161-3/+3
|
* Filled in math-module info; fixed a typo or two.Tim Peters2000-10-161-6/+12
|
* Add NEWS for 2.0 final (there are a few XXX comments that must beJeremy Hylton2000-10-161-9/+79
| | | | | | addressed). Fix a few nits in 2.0c1 news.
* the usualJeremy Hylton2000-10-161-2/+2
|
* the usual (part II)Jeremy Hylton2000-10-161-30/+40
|
* Test for math.* exceptional behavior only in verbose mode, so that theTim Peters2000-10-162-31/+40
| | | | | oddball platforms (where, e.g., math.exp(+huge) still fails to raise OverflowError) don't fail the std test suite when run normally.
* the usualJeremy Hylton2000-10-1610-259/+488
|
* Patch #101936: Auto-detect DEC threads (which need "-threads" argument)Jeremy Hylton2000-10-162-427/+419
| | | | by Thomas Wouters
* find(): Application of (slightly modified) SF patch #101928 by UlfBarry Warsaw2000-10-161-4/+4
| | | | | | Betlehem, verified by Peter Funk. Fixes preservation of language search order lost due to use of dictionary keys instead of a list. Closes SF bug #116964.
* distutils setup files for TkinterJeremy Hylton2000-10-162-0/+31
|
* misc. RPM support filesJeremy Hylton2000-10-164-0/+383
|
* Demos of the new XML support from Lars Marius Garshol <larsga@garshol.priv.no>.Fred Drake2000-10-163-0/+172
|
* Correct form of FourThought's nameAndrew M. Kuchling2000-10-161-1/+1
|
* Bump version to 1.0.1.Greg Ward2000-10-151-1/+1
|
* Fixed minor problem with reset().Lars Gustäbel2000-10-141-1/+2
|
* Prep the Windows installer for 2.0 final:Tim Peters2000-10-143-8/+14
| | | | | | | + Bump the build number. + Changed app name in installer dialogs. + Fiddled dialogs to repair grammar and get rid of anachronisms (e.g., "ProgMan" and "Program Manager" haven't made sense since Windows 3.1!).
* For PyErr_Format(), note that the exception parameter can be a string orFred Drake2000-10-141-2/+2
| | | | | class, but not an instance (since an instance will be created using the formatted message string as the constructor parameter).
* Adjust the Macintosh manual to have the formatting dependencies forFred Drake2000-10-141-6/+6
| | | | manuals instead of howtos.
* For os.stat() & friends, note that the time fields are returned asFred Drake2000-10-141-1/+3
| | | | floating-point values.
* Update dependencies for the Macintosh manual.Fred Drake2000-10-141-1/+5
|
* Update to include all the new chapters & sections.Fred Drake2000-10-141-9/+24
| | | | | | Convert from a howto to a manual, so we can *have* chapters! Comment out the macconsole module documentation; Think C seems to have disappeared.
* Remove everything that is not module documentation.Fred Drake2000-10-141-41/+0
| | | | It is no longer needed here.
* Fix some internal references that I botched.Fred Drake2000-10-141-4/+4
|
* Chapter on how to use MacPython, by Bob Savage <bobsavage@mac.com>.Fred Drake2000-10-141-0/+374
|
* Chapters on Mac Toolbox modules and other undocumented modules, ready toFred Drake2000-10-142-0/+245
| | | | | be filled in with real information. Contributed by Chris Barker <cbarker@jps.net>.
* Documentation for the aepack and aetypes modules, by Vincent MarchettiFred Drake2000-10-142-0/+112
| | | | <vincem@en.com>.
* Chris Barker <cbarker@jps.net>:Fred Drake2000-10-141-2/+2
| | | | Small fixes.
* Chris Barker <cbarker@jps.net>:Fred Drake2000-10-141-18/+21
| | | | Various updates and additions.
* Chris Barker <cbarker@jps.net>:Fred Drake2000-10-141-4/+2
| | | | Small clarification, remove the assertion that the module is temporary.
* Chris Barker <cbarker@jps.net>:Fred Drake2000-10-141-7/+20
| | | | | Added summary of the strengths and weaknesses of the FrameWork module and fixed some typos.
* Wrap a long line.Fred Drake2000-10-141-2/+2
|
* More names.Fred Drake2000-10-141-0/+2
|
* A bunch of nits fix and some additional information added by ChrisFred Drake2000-10-142-13/+18
| | | | Barker <cbarker@jps.net>.
* Update the comments for the BSD DB module, including a new pointer toFred Drake2000-10-141-3/+5
| | | | | | the DB 3 module; thanks to Robin Dunn <robind@users.sourceforge.net>. This closes SourceForge bug #116850.
* Center the top line of the license page, to make it look just a little bitFred Drake2000-10-141-1/+1
| | | | cleaner.
* Removed debugging code at bottom.Greg Ward2000-10-141-8/+0
|
* Untabified.Greg Ward2000-10-148-14/+14
|
* Bastian Kleineidam: make 'check_lib()' more like AC_CHECK_LIB by addingGreg Ward2000-10-141-3/+6
| | | | an 'other_libraries()' parameter.
* Lyle Johnson: use 'normcase()' in addition to 'normpath()' when testing ifGreg Ward2000-10-141-2/+4
| | | | we actually installed modules to a directory in sys.path.
* Bastian Kleineidam: fix up any supplied command-line options.Greg Ward2000-10-141-1/+16
|
* Call SchedParams(1,0) so the dialog is correctly re-enabled after something ↵Jack Jansen2000-10-131-2/+5
| | | | has been on top of it.
* Added some of the new Numeric modules (which weren't rebuilt).Jack Jansen2000-10-131-0/+1
|
* If we're installing to another partition than the system partition offer to ↵Jack Jansen2000-10-132-1/+16
| | | | copy PythonCore in stead of aliasing it. This should fix the applet problems some people have.
* Updated with cmd-. fix and PythonCore copy option.Jack Jansen2000-10-131-3/+4
|
* getting closeJeremy Hylton2000-10-131-3/+3
|
* run the std regression test suite using bytecode produced by the compilerJeremy Hylton2000-10-131-0/+55
|
* add -d option that dumps entire AST before compilingJeremy Hylton2000-10-131-2/+5
|
* Now supports entire Python 2.0 language and still supports PythonJeremy Hylton2000-10-138-186/+926
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 1.5.2. The compiler generates code for the version of the interpreter it is run under. ast.py: Print and Printnl add dest attr for extended print new node AugAssign for augmented assignments new nodes ListComp, ListCompFor, and ListCompIf for list comprehensions pyassem.py: add work around for string-Unicode comparison raising UnicodeError on comparison of two objects in code object's const table pycodegen.py: define VERSION, the Python major version number get magic number using imp.get_magic() instead of hard coding implement list comprehensions, extended print, and augmented assignment; augmented assignment uses Delegator classes (see doc string) fix import and tuple unpacking for 1.5.2 transformer.py: various changes to support new 2.0 grammar and old 1.5 grammar add debug_tree helper than converts and symbol and token numbers to their names
* Updated test suite to latest pulldom changes.Lars Gustäbel2000-10-132-19/+19
|