summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Improve variable name in sample codeRaymond Hettinger2008-01-221-1/+1
|
* Give zip() the same guarantee as izip() for left-to-right evaluation.Raymond Hettinger2008-01-221-0/+4
|
* Document when to use izip_longest().Raymond Hettinger2008-01-221-16/+7
|
* Minor documentation change - hyperlink tidied up.Vinay Sajip2008-01-211-5/+8
|
* Adapt pydoc to new doc URLs.Georg Brandl2008-01-211-1/+1
|
* Removing bundlebuilder docs again -- it's not to be used anymore (see #779825).Georg Brandl2008-01-212-29/+0
|
* Add a stub for bundlebuilder documentation.Georg Brandl2008-01-212-0/+29
|
* #1555501: document plistlib and move it to the general library.Georg Brandl2008-01-212-0/+125
|
* Fix example.Georg Brandl2008-01-211-0/+2
|
* #1087741: make mmap.mmap the type of mmap objects, not aGeorg Brandl2008-01-211-7/+10
| | | | factory function. Allow it to be subclassed.
* #1669: don't allow shutil.rmtree() to be called on a symlink.Georg Brandl2008-01-201-12/+18
|
* #1648: add sys.gettrace() and sys.getprofile().Georg Brandl2008-01-201-0/+29
|
* #652749: document the constants added to the builtins by site.py.Georg Brandl2008-01-202-2/+27
|
* #799369: document possible sys.platform values.Georg Brandl2008-01-201-3/+20
|
* #856047: respect the ``no_proxy`` env var when checking for proxiesGeorg Brandl2008-01-201-0/+9
| | | | | in urllib and using the other ``_proxy`` env vars. Original patch by Donovan Baarda.
* #1178141: add addinfourl.code to get http status code from urllib.Georg Brandl2008-01-201-5/+9
|
* Document that zipfile decryption is insanely slow and fix a typo andGregory P. Smith2008-01-201-1/+2
| | | | | blatant lie in a docstring (it is not useful for security regardless of how you spell it).
* Bug 1296: restore text describing OptionGroupAndrew M. Kuchling2008-01-191-0/+29
|
* #1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods.Georg Brandl2008-01-191-3/+31
|
* #1411695: clarify behavior of xml.sax.utils.[un]escape.Georg Brandl2008-01-191-2/+4
|
* #1663329: add os.closerange() to close a range of fds,Georg Brandl2008-01-191-0/+14
| | | | | ignoring errors, and use this in subprocess to speed up subprocess creation in close_fds mode. Patch by Mike Klaas.
* Fix #1693149. Now you can pass several modules separated byFacundo Batista2008-01-191-3/+5
| | | | | coma to trace.py in the same --ignore-module option. Thanks Raghuram Devarakonda.
* Patch #976880: add mmap .rfind() method, and 'end' paramter to .find().Andrew M. Kuchling2008-01-191-4/+13
| | | | Contributed by John Lenton.
* Clarify thread.join() docs. #1873.Georg Brandl2008-01-191-6/+7
|
* Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer ↵Andrew M. Kuchling2008-01-191-1/+15
| | | | | | that will call .handle_timeout() method when no requests are received within the timeout period.
* Polish sentenceAndrew M. Kuchling2008-01-191-2/+2
|
* Amend curses docs by info how to write non-ascii characters.Georg Brandl2008-01-191-0/+13
| | | | Thanks to Jeroen Ruigrok van der Werven.
* Fix markup.Georg Brandl2008-01-191-56/+56
|
* Several tweaks: add construction from strings and .from_decimal(), changeJeffrey Yasskin2008-01-191-2/+12
| | | | | __init__ to __new__ to enforce immutability, and remove "rational." from repr and the parens from str.
* Better variable name in an example.Raymond Hettinger2008-01-181-2/+2
|
* Added section on passing contextual information to logging and documentation ↵Vinay Sajip2008-01-181-27/+134
| | | | for the LoggerAdapter class.
* Typo fixAndrew M. Kuchling2008-01-181-1/+1
|
* Fix markupRaymond Hettinger2008-01-171-0/+2
|
* Fix-up Timer() example.Raymond Hettinger2008-01-171-3/+4
|
* Add advice on choosing between scheduler and threading.Timer().Raymond Hettinger2008-01-171-0/+25
|
* Issue #1861: Add read-only attribute listing upcoming events in the order ↵Raymond Hettinger2008-01-171-1/+6
| | | | they will be run.
* Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339Gregory P. Smith2008-01-171-0/+26
| | | | | | | | | - Factor out the duplication of EHLO/HELO in login() and sendmail() to a new function, ehlo_or_helo_if_needed(). - Use ehlo_or_helo_if_needed() in starttls() - Check for the starttls exception in starttls() in the same way as login() checks for the auth extension. Contributed by Bill Fenner.
* Note versionadded.Raymond Hettinger2008-01-171-0/+4
|
* Make starmap() match its pure python definition and accept any itertable ↵Raymond Hettinger2008-01-171-4/+6
| | | | input (not just tuples).
* Minor wordsmithing.Raymond Hettinger2008-01-162-9/+29
|
* Fix MSDN library URL. (#1854)Georg Brandl2008-01-161-1/+1
|
* Markup fixAndrew M. Kuchling2008-01-161-1/+1
|
* Fix-up half-written paragraph in the docsRaymond Hettinger2008-01-151-7/+3
|
* Refactor if/elif chain for clarity and speed. Remove dependency on ↵Raymond Hettinger2008-01-151-0/+8
| | | | subclasses having to implement _empty and _full.
* Add rational.Rational as an implementation of numbers.Rational with infiniteJeffrey Yasskin2008-01-152-0/+66
| | | | | | | | | | | | | precision. This has been discussed at http://bugs.python.org/issue1682. It's useful primarily for teaching, but it also demonstrates how to implement a member of the numeric tower, including fallbacks for mixed-mode arithmetic. I expect to write a couple more patches in this area: * Rational.from_decimal() * Rational.trim/approximate() (maybe with different names) * Maybe remove the parentheses from Rational.__str__() * Maybe rename one of the Rational classes * Maybe make Rational('3/2') work.
* Small grammar nitRaymond Hettinger2008-01-151-2/+2
|
* Better (?) text describing the lack of guarantees provided by qsize(),Skip Montanaro2008-01-151-6/+11
| | | | empty() and full().
* Markup fixAndrew M. Kuchling2008-01-151-1/+1
|
* Typo fixesAndrew M. Kuchling2008-01-151-1/+1
|
* Now that I've learnt about structseq objects I felt like converting ↵Christian Heimes2008-01-141-2/+2
| | | | | | sys.float_info to a structseq. It's readonly and help(sys.float_info) explains the attributes nicely.