summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Markup fixesAndrew M. Kuchling2006-05-011-12/+12
|
* Add itemAndrew M. Kuchling2006-05-011-0/+5
|
* Markup fixes; add some XXX comments noting problemsAndrew M. Kuchling2006-05-011-27/+29
|
* add dependencyFred Drake2006-05-011-0/+1
|
* Rename parameters to match the documentation (whichMartin v. Löwis2006-05-012-16/+15
| | | | | in turn matches Microsoft's documentation). Drop unused parameter in CAB.append.
* Add msilib documentation.Martin v. Löwis2006-05-012-0/+486
|
* Rename uisample to text, drop all non-text tables.Martin v. Löwis2006-05-012-1399/+129
|
* Further integration of the documentation for the sqlite3 module. There's stillGerhard Häring2006-05-0130-3/+654
| | | | quite some content to move over from the pysqlite manual, but it's a start now.
* Some ElementTree fixes: import from xml, not xmlcore; fix case of module ↵Andrew M. Kuchling2006-05-011-6/+6
| | | | name; mention list() instead of getchildren()
* Work around deadlock risk. Will backport.Martin v. Löwis2006-05-012-3/+18
|
* - minor clarification in section titleFred Drake2006-05-011-15/+9
| | | | | - markup adjustments (there is clearly much to be done in this section)
* Port forward from 2.4 branch:Barry Warsaw2006-05-015-0/+24
| | | | | | | | | | Patch #1464708 from William McVey: fixed handling of nested comments in mail addresses. E.g. "Foo ((Foo Bar)) <foo@example.com>" Fixes for both rfc822.py and email package. This patch needs to be back ported to Python 2.3 for email 2.5.
* Add itemAndrew M. Kuchling2006-04-301-0/+6
|
* Add urllib2 HOWTO from Michael FoordAndrew M. Kuchling2006-04-301-0/+410
|
* Patch #1479438: add \keyword markup for "with".Georg Brandl2006-04-302-5/+5
|
* Patch #1472854: make the rlcompleter.Completer class usable on non-Georg Brandl2006-04-304-14/+19
| | | | UNIX platforms.
* Fix another problem in inspect: if the module for an object cannot be found, ↵Georg Brandl2006-04-301-1/+5
| | | | don't try to give its __dict__ to linecache.
* Fix infinite regress when inspecting <string> or <stdin> frames.Phillip J. Eby2006-04-301-1/+7
|
* Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0.Georg Brandl2006-04-306-53/+67
| | | | | On the way, add a decorator to test_support to facilitate running single test functions in different locales with automatic cleanup.
* Patch #1470976: don't NLST files when retrieving over FTP.Georg Brandl2006-04-301-7/+0
|
* In stdlib, use hashlib instead of deprecated md5 and sha modules.Georg Brandl2006-04-306-17/+16
|
* Patch #1470846: fix urllib2 ProxyBasicAuthHandler.Georg Brandl2006-04-305-50/+257
|
* Use \versionchanged instead of \versionadded for new parameter support.George Yoshida2006-04-301-1/+1
|
* Add two itemsAndrew M. Kuchling2006-04-301-0/+17
|
* This is the start of documentation for the sqlite3 module. Please feel free toGerhard Häring2006-04-293-1/+108
| | | | find a better place for the link to it than alongside bsddb & friends.
* Fix docstring for contextfactory; mentioned old contextmanager name.Brett Cannon2006-04-291-1/+1
|
* Further changes for #1471883: Edit Misc/NEWS, andMartin v. Löwis2006-04-292-0/+21
| | | | add expat_config.h.
* Add itemAndrew M. Kuchling2006-04-291-1/+5
|
* Make case of 'ZIP' consistentAndrew M. Kuchling2006-04-291-1/+1
|
* Add itemAndrew M. Kuchling2006-04-291-0/+5
|
* Patch 1471883: --enable-universalsdk on Mac OS XRonald Oussoren2006-04-297-25/+169
|
* grammar fixGeorge Yoshida2006-04-291-1/+1
|
* Bug #1478429: make datetime.datetime.fromtimestamp accept every float,Georg Brandl2006-04-282-0/+13
| | | | possibly "rounding up" to the next whole second.
* Remove a duplicated test (the same test is in test_incomplete.py).Thomas Heller2006-04-281-21/+0
|
* Bug #1478326: don't allow '/' in distutils.util.get_platform machine namesGeorg Brandl2006-04-281-0/+1
| | | | since this value is used to name the build directory.
* Bug #1472949: stringify IOErrors in shutil.copytree when appendingGeorg Brandl2006-04-281-1/+1
| | | | them to the Error errors list.
* correct a dead linkGeorge Yoshida2006-04-281-1/+1
|
* Bug #1475009: clarify ntpath.join behavior with absolute componentsGeorg Brandl2006-04-281-2/+3
|
* Add SeaMonkey to the list of Mozilla browsers.Georg Brandl2006-04-281-1/+1
|
* fix markup glitchGeorge Yoshida2006-04-281-1/+1
|
* Fix a warning on ppc (debian)Neal Norwitz2006-04-281-4/+7
|
* Fix a warning on alphaNeal Norwitz2006-04-281-1/+1
|
* Fix some warnings on Mac OS X 10.4Neal Norwitz2006-04-283-21/+9
|
* Try to really fix the slow buildbots this time.Neal Norwitz2006-04-281-0/+1
| | | | | | Printing to stdout, doesn't mean the data was actually written. It depends on the buffering, so we need to flush. This will hopefully really fix the buildbots getting killed due to no output on the slow bots.
* Add some whitespace to be more consistent.Neal Norwitz2006-04-281-11/+13
|
* Add more ignores of ImportWarnings; these are all just potential triggersThomas Wouters2006-04-271-1/+3
| | | | | (since they won't trigger if zlib is already sucessfully imported); they were found by grepping .py files, instead of looking at warning output :)
* - Add new Warning class, ImportWarningThomas Wouters2006-04-276-7/+60
| | | | | | | | | | | | | | - Warn-raise ImportWarning when importing would have picked up a directory as package, if only it'd had an __init__.py. This swaps two tests (for case-ness and __init__-ness), but case-test is not really more expensive, and it's not in a speed-critical section. - Test for the new warning by importing a common non-package directory on sys.path: site-packages - In regrtest.py, silence warnings generated by the build-environment because Modules/ (which is added to sys.path for Setup-created modules) has 'zlib' and '_ctypes' directories without __init__.py's.
* Added SVN access for Steven Bethard and Talin, for PEP updating.David Goodger2006-04-271-0/+7
|
* Do the small-memory run of big-meormy tests using a prime number, ratherThomas Wouters2006-04-271-1/+1
| | | | | than a convenient power-of-2-and-multiple-of-5, so incorrect testing algorithms fail more easily.
* Some style fixes and size-calculation fixes. Also do the small-memory runThomas Wouters2006-04-271-16/+21
| | | | | using a prime number, rather than a convenient power-of-2-and-multiple-of-5, so incorrect testing algorithms fail more easily.