Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added documentation for optional delay argument to FileHandler and subclasses. | Vinay Sajip | 2008-01-24 | 1 | -8/+18 |
| | |||||
* | Fix issue1789: The tutorial contained a misuse of the struct module. | Gregory P. Smith | 2008-01-24 | 2 | -5/+7 |
| | | | | (also remove an unneeded import struct from test_largefile) | ||||
* | Let pprint() support sets and frozensets (suggested by David Mertz). | Raymond Hettinger | 2008-01-23 | 1 | -0/+3 |
| | |||||
* | Improve variable name in sample code | Raymond Hettinger | 2008-01-22 | 1 | -1/+1 |
| | |||||
* | Give zip() the same guarantee as izip() for left-to-right evaluation. | Raymond Hettinger | 2008-01-22 | 1 | -0/+4 |
| | |||||
* | Document when to use izip_longest(). | Raymond Hettinger | 2008-01-22 | 1 | -16/+7 |
| | |||||
* | Don't repeat yourself | Christian Heimes | 2008-01-22 | 1 | -2/+18 |
| | | | | Added the macros PyModule_AddIntMacro and PyModule_AddStringMacro. They shorten PyModule_AddIntConstant(m, "AF_INET", AF_INET) to PyModule_AddIntMacro(m, AF_INET) | ||||
* | Fix \xhh specs, #1889. | Georg Brandl | 2008-01-22 | 1 | -1/+1 |
| | |||||
* | Adapt to latest doctools refactoring. | Georg Brandl | 2008-01-21 | 2 | -6/+77 |
| | |||||
* | Use original location of document, which has translations. | Georg Brandl | 2008-01-21 | 1 | -1/+1 |
| | |||||
* | Minor documentation change - hyperlink tidied up. | Vinay Sajip | 2008-01-21 | 1 | -5/+8 |
| | |||||
* | Fix old link. | Georg Brandl | 2008-01-21 | 1 | -3/+2 |
| | |||||
* | Adapt pydoc to new doc URLs. | Georg Brandl | 2008-01-21 | 2 | -2/+2 |
| | |||||
* | #997912: acknowledge nested scopes in tutorial. | Georg Brandl | 2008-01-21 | 1 | -4/+5 |
| | |||||
* | Removing bundlebuilder docs again -- it's not to be used anymore (see #779825). | Georg Brandl | 2008-01-21 | 2 | -29/+0 |
| | |||||
* | Add a stub for bundlebuilder documentation. | Georg Brandl | 2008-01-21 | 2 | -0/+29 |
| | |||||
* | #1555501: document plistlib and move it to the general library. | Georg Brandl | 2008-01-21 | 2 | -0/+125 |
| | |||||
* | Fix example. | Georg Brandl | 2008-01-21 | 1 | -0/+2 |
| | |||||
* | #1087741: make mmap.mmap the type of mmap objects, not a | Georg Brandl | 2008-01-21 | 1 | -7/+10 |
| | | | | factory function. Allow it to be subclassed. | ||||
* | Fix markup. | Georg Brandl | 2008-01-20 | 1 | -4/+4 |
| | |||||
* | #1219903: fix tp_richcompare docs. | Georg Brandl | 2008-01-20 | 1 | -7/+13 |
| | |||||
* | Add blurb about executable scripts on Windows. #760657. | Georg Brandl | 2008-01-20 | 1 | -0/+6 |
| | |||||
* | #1669: don't allow shutil.rmtree() to be called on a symlink. | Georg Brandl | 2008-01-20 | 1 | -12/+18 |
| | |||||
* | #1648: add sys.gettrace() and sys.getprofile(). | Georg Brandl | 2008-01-20 | 1 | -0/+29 |
| | |||||
* | #652749: document the constants added to the builtins by site.py. | Georg Brandl | 2008-01-20 | 2 | -2/+27 |
| | |||||
* | #799369: document possible sys.platform values. | Georg Brandl | 2008-01-20 | 1 | -3/+20 |
| | |||||
* | #856047: respect the ``no_proxy`` env var when checking for proxies | Georg Brandl | 2008-01-20 | 1 | -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 Brandl | 2008-01-20 | 1 | -5/+9 |
| | |||||
* | Document that zipfile decryption is insanely slow and fix a typo and | Gregory P. Smith | 2008-01-20 | 1 | -1/+2 |
| | | | | | blatant lie in a docstring (it is not useful for security regardless of how you spell it). | ||||
* | Patch #1048820 from Stefan Wehr: add insert-mode editing to Textbox. | Andrew M. Kuchling | 2008-01-20 | 1 | -2/+5 |
| | | | | Fix an off-by-one error I noticed. | ||||
* | Missed one big file to split up. | Georg Brandl | 2008-01-19 | 7 | -1166/+1175 |
| | |||||
* | Split the monstrous C API manual files in smaller parts. | Georg Brandl | 2008-01-19 | 41 | -5068/+5118 |
| | |||||
* | Bug 1296: restore text describing OptionGroup | Andrew M. Kuchling | 2008-01-19 | 1 | -0/+29 |
| | |||||
* | #1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods. | Georg Brandl | 2008-01-19 | 1 | -3/+31 |
| | |||||
* | #1411695: clarify behavior of xml.sax.utils.[un]escape. | Georg Brandl | 2008-01-19 | 1 | -2/+4 |
| | |||||
* | #1663329: add os.closerange() to close a range of fds, | Georg Brandl | 2008-01-19 | 1 | -0/+14 |
| | | | | | ignoring errors, and use this in subprocess to speed up subprocess creation in close_fds mode. Patch by Mike Klaas. | ||||
* | Add item | Andrew M. Kuchling | 2008-01-19 | 1 | -0/+7 |
| | |||||
* | Fix #1693149. Now you can pass several modules separated by | Facundo Batista | 2008-01-19 | 1 | -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. Kuchling | 2008-01-19 | 1 | -4/+13 |
| | | | | Contributed by John Lenton. | ||||
* | Clarify thread.join() docs. #1873. | Georg Brandl | 2008-01-19 | 1 | -6/+7 |
| | |||||
* | Add item | Andrew M. Kuchling | 2008-01-19 | 1 | -0/+7 |
| | |||||
* | Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer ↵ | Andrew M. Kuchling | 2008-01-19 | 1 | -1/+15 |
| | | | | | | that will call .handle_timeout() method when no requests are received within the timeout period. | ||||
* | Fix typos. | Georg Brandl | 2008-01-19 | 1 | -7/+7 |
| | |||||
* | Polish sentence | Andrew M. Kuchling | 2008-01-19 | 1 | -4/+4 |
| | |||||
* | Polish sentence | Andrew M. Kuchling | 2008-01-19 | 1 | -2/+2 |
| | |||||
* | Amend curses docs by info how to write non-ascii characters. | Georg Brandl | 2008-01-19 | 1 | -0/+13 |
| | | | | Thanks to Jeroen Ruigrok van der Werven. | ||||
* | Fix markup. | Georg Brandl | 2008-01-19 | 1 | -56/+56 |
| | |||||
* | Several tweaks: add construction from strings and .from_decimal(), change | Jeffrey Yasskin | 2008-01-19 | 1 | -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 Hettinger | 2008-01-18 | 1 | -2/+2 |
| | |||||
* | Note that genexps are function scopes too and therefore won't see class ↵ | Georg Brandl | 2008-01-18 | 1 | -1/+7 |
| | | | | attributes. |