summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* fix several compile() issues by translating newlines in the tokenizerBenjamin Peterson2009-11-121-5/+8
|
* Give the profile module a module directive.Georg Brandl2009-11-121-0/+2
|
* Show example of how to make a sorted dictionaryRaymond Hettinger2009-11-101-0/+22
|
* Remove redundant sentence.R. David Murray2009-11-091-7/+6
|
* discuss how to use -pBenjamin Peterson2009-11-091-0/+8
|
* #7271: fix typo.Georg Brandl2009-11-071-1/+1
|
* #7259: show correct equivalent for operator.i* operations in docstring; fix ↵Georg Brandl2009-11-041-87/+89
| | | | minor issues in operator docs.
* #7256: add versionadded tags for functions copied from cgi.Georg Brandl2009-11-031-0/+7
|
* Fix doc typo reported by Arfrever.Mark Dickinson2009-11-031-1/+2
|
* typo (space-o?)Skip Montanaro2009-11-031-1/+1
|
* Remove official documentation entry for thread._count() and make theAntoine Pitrou2009-10-301-13/+0
| | | | docstring more descriptive instead.
* Issue #7222: Make thread "reaping" more reliable so that referenceAntoine Pitrou2009-10-301-0/+14
| | | | | | | leak-chasing test runs give sensible results. The previous method of reaping threads could return successfully while some Thread objects were still referenced. This also introduces a new private function: :func:hread._count().
* Issue 7199: Documentation made slightly more consistent w.r.t. logging level ↵Vinay Sajip2009-10-281-1/+1
| | | | enumeration.
* Issue #7117 (backport py3k float repr) continued:Mark Dickinson2009-10-241-0/+12
| | | | | Add sys.float_repr_style attribute ('short' if short float repr is in used; 'legacy' otherwise).
* Fix markup.Georg Brandl2009-10-241-1/+1
|
* add further note about what's passed to optionxformFred Drake2009-10-231-0/+3
|
* #7188: fix optionxform() docs.Georg Brandl2009-10-231-6/+14
|
* #6977: getopt does not support optional option arguments.Georg Brandl2009-10-221-11/+12
|
* #7156: document curses as Unix-only.Georg Brandl2009-10-221-1/+1
|
* #7035: improve docs of the various <method>_errors() functions, and give ↵Georg Brandl2009-10-221-15/+25
| | | | them docstrings.
* #7088: document new functions in signal as Unix-only.Georg Brandl2009-10-221-8/+9
|
* Use "impl-detail" directive where applicable.Georg Brandl2009-10-228-63/+86
|
* Add a new directive marking up implementation details and start using it.Georg Brandl2009-10-221-4/+4
|
* Fix markup.Georg Brandl2009-10-221-1/+1
|
* Fix punctuation.Georg Brandl2009-10-223-5/+5
|
* rewrite to be nice to other implementationsBenjamin Peterson2009-10-221-2/+2
|
* #7170: fix explanation about non-weakrefable builtin types.Georg Brandl2009-10-211-0/+4
|
* clarify buffer arg #7178Benjamin Peterson2009-10-201-2/+2
|
* use property apiBenjamin Peterson2009-10-201-1/+1
|
* Fix missing word.Georg Brandl2009-10-181-1/+1
|
* Fix a typo.Senthil Kumaran2009-10-181-1/+1
|
* Fix for Issue7155 - urllib do not document default use of system proxy ↵Senthil Kumaran2009-10-182-4/+14
| | | | configuration
* #7116: str.join() takes an iterable.Georg Brandl2009-10-141-3/+4
|
* #7126: os.environ changes *do* take effect in subprocesses started with ↵Georg Brandl2009-10-141-3/+3
| | | | os.system().
* Fix markup.Georg Brandl2009-10-131-1/+1
|
* platform we don't care aboutBenjamin Peterson2009-10-121-6/+6
|
* Fix broken links found by "make linkcheck". scipy.org seems to be done ↵Georg Brandl2009-10-113-16/+14
| | | | right now, so I could not verify links going there.
* Issue #7086: Added TCP support to SysLogHandler and tidied up some ↵Vinay Sajip2009-10-101-6/+12
| | | | anachronisms in the code.
* Issue #7051: Clarify behaviour of 'g' and 'G'-style formatting.Mark Dickinson2009-10-081-7/+25
|
* Backport r73983: Document the thousands separator.Andrew M. Kuchling2009-10-051-1/+5
|
* Document 'skip' parameter to constructorAndrew M. Kuchling2009-10-051-2/+10
|
* Fix narkupAndrew M. Kuchling2009-10-051-1/+1
|
* Wording fixAndrew M. Kuchling2009-10-051-1/+1
|
* Issue #7028: Add note to hex() builtin docs pointing to float.hex().Mark Dickinson2009-10-031-0/+5
|
* #7031: Add TestCase.assertIsInstance and negated method.Georg Brandl2009-10-011-0/+16
|
* Sync the 2.x `io` docs with py3k, with a small note as to the distinctionAntoine Pitrou2009-10-011-158/+267
| | | | between bytes streams and text streams.
* Mention issue6972 in extractall docs about overwriting things outside ofGregory P. Smith2009-09-291-0/+7
| | | | the supplied path.
* #5329: fix os.popen* regression from 2.5: don't execute commands as a sequencePhilip Jenvey2009-09-291-20/+30
| | | | | | through the shell. also document the correct subprocess replacement for this case patch from Jean-Paul Calderone and Jani Hakala
* Issue 7008: Better document str.title and show how to work around the ↵Raymond Hettinger2009-09-291-2/+22
| | | | apostrophe problem.
* Issue #3366: Add gamma function to math module.Mark Dickinson2009-09-281-0/+10
| | | | (lgamma, erf and erfc to follow).