summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* New subprocess utility function: check_call. Closes #1071764.Peter Astrand2005-01-011-1/+17
|
* SF Patch #1093896: miscellaneous doc typosRaymond Hettinger2005-01-0160-102/+103
|
* SF bug #1090139: presentation typo in lib: 6.21.4.2 How callbacks are calledRaymond Hettinger2004-12-311-1/+1
|
* Update to VC 7.1. Will backport to 2.4.Martin v. Löwis2004-12-301-54/+54
|
* Typo fixAndrew M. Kuchling2004-12-291-1/+1
|
* correct decorator example, tweak description slightlySkip Montanaro2004-12-261-11/+15
|
* Fix sentence stating TextEdit only saves in RTF; can save in plaintext as well.Brett Cannon2004-12-241-2/+2
| | | | Closes bug #1085300. Thanks unclewalrus.
* discuss how the __builtin__ module is normally used, and try to clarify theFred Drake2004-12-231-5/+38
| | | | difference between __builtins__ and __builtin__ (based on an email comment)
* fix weird capitalization of "built-in"Fred Drake2004-12-231-1/+1
|
* SF patch #1055159 via Titus Brown: Document redirect limitation.Jeremy Hylton2004-12-221-0/+5
| | | | Bug fix candidate.
* Remove outdated comments about expanduser and expandvars for Macintosh thatBrett Cannon2004-12-221-3/+1
| | | | referred to OS 9 semantics.
* add __file__ to the globals available for tests loaded via DocFileSuite;Fred Drake2004-12-211-0/+4
| | | | | this is useful for locating supporting data files, just as it is in Python modules
* Add accidentally removed \end{description} back in.Johannes Gijsbers2004-12-211-0/+1
|
* Any call to marshal.dumps() with the new optional argument 'version' justArmin Rigo2004-12-201-3/+3
| | | | | immediately segfaults, due to a typo! This was obviously never tested... Added a test for it, and also fixed the documentation.
* Bug #1088206: zlib decompressobj documentation typoRaymond Hettinger2004-12-201-1/+1
|
* Bug #1066607: "Limitations" section of profiler docs is incorrectRaymond Hettinger2004-12-191-10/+1
|
* Fix typo (from SF bug #1086127).Walter Dörwald2004-12-151-1/+1
|
* SF bug #1084457: ossaudiodev no longer undocumentedRaymond Hettinger2004-12-141-5/+0
|
* Check in missing png version of pyfav.gif.Johannes Gijsbers2004-12-131-0/+0
|
* note for amkAnthony Baxter2004-12-131-0/+3
|
* the bsddb module now also works with BerkeleyDB 4.3.Gregory P. Smith2004-12-131-1/+1
|
* Patch #1080684: typo repair. Thanks George Yoshida!Johannes Gijsbers2004-12-124-9/+10
| | | | | | | | | | | | | | | | - Doc/lib/libbase64.tex s/algorith/algorithm - Doc/lib/libpickle.tex s/interchangable/interchangeable - Doc/lib/libxmlrpclib.tex s/{_cmp__}/{__cmp__} leading underscore needs to be double, not single. - Doc/ref/ref6.tex 0/1 => False/True
* Setting textwrap.TextWrapper().expand_tabs to True calls expandtabs, notBrett Cannon2004-12-111-1/+1
| | | | expand_tabs, on the object being wrapped.
* SF bug #1082944: Incorrect docs for PyUnicode_TailMatchRaymond Hettinger2004-12-101-1/+2
| | | | | * Note correct return type is int. * Note that -1 returned on failure.
* Eliminate the deprecated option to return None instead of a tuple of ↵Raymond Hettinger2004-12-071-6/+2
| | | | arguments in __reduce__().
* Remove deprecated xmllib from inclusion in the docs.Raymond Hettinger2004-12-062-2/+1
|
* Fix for SF bug #947894: calendar.weekheader() undocumentedWalter Dörwald2004-12-061-0/+5
|
* Have test_mkalias_relative check that sys.prefix already exists; otherwise testBrett Cannon2004-12-061-2/+6
| | | | | | | | | | is pointless. Also add a note to the docs for the 'test' package that test cases should check first that any conditions needed in the operating system are met before having a test run. Closes bug #1077302. THanks, Ian Holsman.
* Changed signature of call function to avoid confusion: this 'args' is not ↵Peter Astrand2004-12-051-1/+1
| | | | the same as the one to the Popen constructor
* Added optional None arguments to itertools.islice().Raymond Hettinger2004-12-051-0/+5
|
* remove dependencies that are no longer used for the library referenceFred Drake2004-12-051-3/+0
|
* Remove the deprecated statcache module.Raymond Hettinger2004-12-052-61/+0
|
* Removed the deprecated bin parameter from the pickle module.Raymond Hettinger2004-12-051-34/+11
|
* Removed deprecated method arguments from the shelve module.Raymond Hettinger2004-12-051-10/+8
|
* Removed deprecated method from pstats.Raymond Hettinger2004-12-051-8/+0
|
* Removed deprecated use_statcache argument.Raymond Hettinger2004-12-051-5/+4
|
* Remove the deprecated whrandom module.Raymond Hettinger2004-12-044-113/+6
|
* Add itemAndrew M. Kuchling2004-12-031-1/+2
|
* Hyphenate 'one-argument'Andrew M. Kuchling2004-12-031-2/+2
|
* AAdd item. (And so it beegins again.)Andrew M. Kuchling2004-12-031-1/+18
|
* Fill in various bits of the templateAndrew M. Kuchling2004-12-031-27/+5
|
* SF patch #1077353: add key= argument to min and maxRaymond Hettinger2004-12-031-1/+13
| | | | (First draft of patch contributed by Steven Bethard.)
* Fixed errors reported in SF bug #1074693Vinay Sajip2004-12-021-6/+23
|
* Add key= argument to heapq.nsmallest() and heapq.nlargest().Raymond Hettinger2004-12-021-6/+14
|
* Fix typo.Raymond Hettinger2004-12-021-1/+1
|
* SF bug #1076955: Tutorial corrections Part IIRaymond Hettinger2004-12-022-34/+36
|
* SF bug #1076955: Tutorial corrections Part IRaymond Hettinger2004-12-021-54/+67
| | | | (Submitted by some anonymous person with an amazing eye for grammer nits.)
* Make the example server code clearer; add the corresponding example client. ↵Andrew M. Kuchling2004-12-011-5/+36
| | | | [Bugfix candidate]
* - fix up internal hyperlink generation in PDF formatting so that links atFred Drake2004-12-011-8/+17
| | | | | | | the beginning of a paragraph do not generate errors; this affected things like \refmodule when it came first in a paragraph - clean up the .sty file to separate out the treatment of the start of a new paragraph
* - bump version number for "What's New" documentFred Drake2004-12-011-2/+2
| | | | | - don't create .tgz version of doc source package, since we're not generating that for the other formats either