summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* merge with 3.2Sandro Tosi2012-08-121-1/+3
|\
| * add usage example from cli; thanks to Christian Clauss from docs@Sandro Tosi2012-08-121-1/+3
| |
* | merge with 3.2Sandro Tosi2012-08-121-1/+1
|\ \ | |/
| * escape '\'; thanks to Steve Holden from docs@Sandro Tosi2012-08-121-1/+1
| |
* | merge with 3.2Sandro Tosi2012-08-121-1/+1
|\ \ | |/
| * it's getstatus() not setstatus(); thanks to Shaddi Hasan from docs@Sandro Tosi2012-08-121-1/+1
| |
* | update doctestsAndrew Svetlov2012-08-122-10/+11
| |
* | fix doctest for email.header docsAndrew Svetlov2012-08-121-3/+3
| |
* | merge with 3.2Sandro Tosi2012-08-121-1/+1
|\ \ | |/
| * add missing quote in splitlines() example; thanks to Yevgen Yampolskiy from ↵Sandro Tosi2012-08-121-1/+1
| | | | | | | | docs@
* | merge with 3.2Sandro Tosi2012-08-121-1/+1
|\ \ | |/
| * add missing parenthesis to 'action' argparse doc; thanks to kishkin from docs@Sandro Tosi2012-08-121-1/+1
| |
* | update CodeTools link; thanks to Robert Kern from docs@Sandro Tosi2012-08-121-1/+1
| |
* | Minor doc formatting cleanup.Brett Cannon2012-08-111-3/+3
| |
* | Issue #15527: fix docs, remove double parens by changing markup.Andrew Svetlov2012-08-112-3/+3
| | | | | | | | Patch by Serhiy Storchaka.
* | Issue #15444: Use proper spelling for non-ASCII contributor names.Antoine Pitrou2012-08-113-5/+5
|\ \ | |/ | | | | Patch by Serhiy Storchaka.
| * Issue #15444: Use proper spelling for non-ASCII contributor names.Antoine Pitrou2012-08-113-5/+5
| | | | | | | | Patch by Serhiy Storchaka.
| * Issue #15501: Document exception classes in subprocess module.Andrew Svetlov2012-08-091-0/+20
| | | | | | | | Initial patch by Anton Barkovsky.
* | Issue #15576: Allow extension modules to be a package's __init__Brett Cannon2012-08-101-4/+4
| | | | | | | | | | module again. Also took the opportunity to stop accidentally exporting _imp.extension_suffixes() as public.
* | Issue #15502: Finish bringing importlib.abc in line with the currentBrett Cannon2012-08-101-22/+46
| | | | | | | | | | | | | | | | | | state of the import system. Also make importlib.invalidate_caches() work with sys.meta_path instead of sys.path_importer_cache to completely separate the path-based import system from the overall import system. Patch by Eric Snow.
* | Issue #15501: Document exception classes in subprocess module.Andrew Svetlov2012-08-091-0/+48
| | | | | | | | Initial patch by Anton Barkovsky.
* | Fix documentation for inspect module to pass doctestAndrew Svetlov2012-08-091-5/+5
| |
* | Issue #15471: Don't use mutable object as default values for theBrett Cannon2012-08-062-2/+2
| | | | | | | | parameters of importlib.__import__().
* | Merge #15554: clarify splitlines/split differences.R David Murray2012-08-061-5/+8
|\ \ | |/ | | | | Patch by Chris Jerdonek.
| * #15554: clarify splitlines/split differences.R David Murray2012-08-061-5/+8
| | | | | | | | Patch by Chris Jerdonek.
* | Issue #15482: Merge 78449:3fe01f7520e2 with a minor clarification.Brett Cannon2012-08-061-1/+2
|\ \ | |/
| * Issue #15482: Properly document the default 'level' parameter forBrett Cannon2012-08-061-5/+8
| | | | | | | | | | | | | | __import__(). To help explain why the -1 default value is typically not seen, a note about how import statements only use values of >= 0 is also noted.
* | Close #13072: Restore code before the PEP 393 for the array moduleVictor Stinner2012-08-051-3/+8
| | | | | | | | | | | | | | | | 'u' format of the array module uses again Py_UNICODE type for backward compatibility with Python 3.2. The only change from Python 3.2 is that PyUnicode_AsUnicode() result is now checked for NULL value.
* | os.unlinkat() has been removed, update os.fwalk() docVictor Stinner2012-08-051-3/+3
| |
* | Issue #14814: Attempt to clarify network address and broadcast address for ↵Nick Coghlan2012-08-051-2/+4
| | | | | | | | less experienced users
* | Issue #14814: Finish review of ipaddress network object docs (initial patch ↵Nick Coghlan2012-08-051-78/+135
| | | | | | | | was by Eli Bendersky)
* | Issue 14814: Docs work showed some more cases of networks pretending to be ↵Nick Coghlan2012-08-051-74/+384
| | | | | | | | addresses and highlighted the weird approach to implementing the 'is_whatever' properties. Impl now illustrates far more clearly that networks have a property if both their network and broadcast addresses have that property
* | Issue #12655: Mention multiprocessing.cpu_count() in os.sched_getaffinity() docVictor Stinner2012-08-041-0/+4
| |
* | Issue #12655: Instead of requiring a custom type, os.sched_getaffinity andAntoine Pitrou2012-08-041-36/+6
| | | | | | | | | | os.sched_setaffinity now use regular sets of integers to represent the CPUs a process is restricted to.
* | (Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n'Victor Stinner2012-08-032-6/+6
|\ \ | |/ | | | | doesn't translate newlines on output.
| * open() / TextIOWrapper doc: make it explicit than newline='\n' doesn'tVictor Stinner2012-08-032-6/+6
| | | | | | | | translate newlines on output.
* | Make TextIOWrapper's documentation clearer by copying the newline argument's ↵Antoine Pitrou2012-08-031-8/+16
|\ \ | |/ | | | | description from open().
| * Make TextIOWrapper's documentation clearer by copying the newline argument's ↵Antoine Pitrou2012-08-031-8/+16
| | | | | | | | description from open().
* | Update the What's New details for importlib based on doc/ABC changes.Brett Cannon2012-08-021-4/+6
| |
* | Ditch the 'self' argument in importlib docs since it's implied.Brett Cannon2012-08-021-8/+8
| |
* | Issue #15502: Bring the importlib.PathFinder docs and docstring more in line ↵Nick Coghlan2012-08-021-10/+5
| | | | | | | | with the new import system documentation, and fix various parts of the new docs that weren't quite right given PEP 420 or were otherwise a bit misleading. Also note the key terminology problem still being discussed in the issue
* | Close #15519: Properly expose WindowsRegistryFinder in importlib and bring ↵Nick Coghlan2012-08-021-0/+11
| | | | | | | | the name into line with normal import terminology. Original patch by Eric Snow
* | Issue #15502: Bring the importlib ABCs into line with the current state of ↵Nick Coghlan2012-08-021-26/+43
| | | | | | | | the import protocols given PEP 420. Original patch by Eric Snow.
* | mergeBarry Warsaw2012-07-313-57/+196
|\ \
| * | Issue #14814: reorganize ipaddress documentation and document all attributes ↵Eli Bendersky2012-07-311-56/+192
| | | | | | | | | | | | of IPv[46]Address objects
| * | Update the string limit in the faulthandler documentationsVictor Stinner2012-07-311-1/+1
| | |
| * | Minor markup tweak.Brett Cannon2012-07-301-1/+1
| | |
| * | Add a versionchanged mention to __import__ in regards to negative level values.Brett Cannon2012-07-301-0/+3
| | |
* | | Integration of importdocs from the features/pep-420 repo.Barry Warsaw2012-07-291-6/+21
|/ /
* | Issue #15041: update "see also" list in tkinter documentation.Andrew Svetlov2012-07-261-3/+18
|\ \ | |/