summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Add a reset_name argument to importlib.util.module_to_load in order toBrett Cannon2013-05-311-1/+5
| | | | | control whether to reset the module's __name__ attribute in case a reload is being done.
* Update What's New for importlib.util.module_to_load name changeBrett Cannon2013-05-311-1/+1
|
* Add a reference to module_to_loadBrett Cannon2013-05-311-2/+1
|
* Rename importlib.util.ModuleManager to module_to_load so that the nameBrett Cannon2013-05-301-6/+7
| | | | explains better what the context manager is providing.
* Issue #9369: The types of `char*` arguments of PyObject_CallFunction() andSerhiy Storchaka2013-05-292-6/+12
| | | | | PyObject_CallMethod() now changed to `const char*`. Based on patches by Jörg Müller and Lars Buitinck.
* #1554133: Document PyOS_InputHook, PyOS_ReadlineFunctionPointerAndrew Kuchling2013-05-291-1/+23
|
* Undo a recommendation as load_module() methods might be called directlyBrett Cannon2013-05-281-5/+1
|
* Issue #18070: importlib.util.module_for_loader() now sets __loader__Brett Cannon2013-05-282-9/+20
| | | | | and __package__ unconditionally in order to do the right thing for reloading.
* Clarify some documentationBrett Cannon2013-05-281-31/+17
|
* Introduce importlib.util.ModuleManager which is a context manager toBrett Cannon2013-05-281-0/+13
| | | | | | | | handle providing (and cleaning up if needed) the module to be loaded. A future commit will use the context manager in Lib/importlib/_bootstrap.py and thus why the code is placed there instead of in Lib/importlib/util.py.
* Issue #18085: Fix PyObject_CallMethodObjArgs()'s entry in refcounts.dat.Serhiy Storchaka2013-05-281-1/+1
|\
| * Issue #18085: Fix PyObject_CallMethodObjArgs()'s entry in refcounts.dat.Serhiy Storchaka2013-05-281-1/+1
| |
* | Issue #18011: base64.b32decode() now raises a binascii.Error if there areSerhiy Storchaka2013-05-281-1/+1
|\ \ | |/ | | | | | | non-alphabet characters present in the input string to conform a docstring. Updated the module documentation.
| * Issue #18011: base64.b32decode() now raises a binascii.Error if there areSerhiy Storchaka2013-05-281-1/+1
| | | | | | | | | | non-alphabet characters present in the input string to conform a docstring. Updated the module documentation.
* | Issue #18079: Fix a typo in the tutorial.Serhiy Storchaka2013-05-281-2/+2
|\ \ | |/
| * Issue #18079: Fix a typo in the tutorial.Serhiy Storchaka2013-05-281-2/+2
| |
* | Merge with 3.3Jason R. Coombs2013-05-281-3/+5
|\ \ | |/
| * Issue #13772: Restored directory detection of targets in `os.symlink` on ↵Jason R. Coombs2013-05-281-3/+5
| | | | | | | | Windows, which was temporarily removed in Python 3.2.3 due to an incomplete implementation. The implementation now works even if the symlink is created in a location other than the current directory.
* | Issue #18072: Implement get_code() for importlib.abc.InspectLoader andBrett Cannon2013-05-281-4/+8
| | | | | | | | ExecutionLoader.
* | Fix typo in embedding doc and update examples to 3.4.Ned Deily2013-05-271-4/+4
|\ \ | |/
| * Fix typo in embedding doc and update examples to 3.3.Ned Deily2013-05-271-4/+4
| |
* | Move importlib.abc.SourceLoader.source_to_code() to InspectLoader.Brett Cannon2013-05-261-11/+11
| | | | | | | | | | | | | | While the previous location was fine, it makes more sense to have the method higher up in the inheritance chain, especially at a point where get_source() is defined which is the earliest source_to_code() could programmatically be used in the inheritance tree in importlib.abc.
* | Fix #16832 - expose cache validity checking support in ABCMetaŁukasz Langa2013-05-251-0/+17
| |
* | mergeBrett Cannon2013-05-251-1/+5
|\ \ | |/
| * Mention __cached__ in the import ref.Brett Cannon2013-05-251-1/+5
| |
* | mergeBrett Cannon2013-05-251-1/+1
|\ \ | |/
| * Add a missing parenthesis.Brett Cannon2013-05-251-1/+1
| |
* | mergeBrett Cannon2013-05-251-3/+8
|\ \ | |/
| * Various tweaks to importlib docs.Brett Cannon2013-05-251-3/+8
| |
* | merge fix for issue #17953Brett Cannon2013-05-241-0/+2
|\ \ | |/
| * Issue #17953: document that sys.modules shouldn't be replaced (thanksBrett Cannon2013-05-241-0/+2
| | | | | | | | | | | | | | | | | | to interp->modules) and that deleting essential items from the dict can cause Python to blow up. Thanks to Terry Reedy for coming up with initial wording and Yogesh Chaudhari for coming up with a patch using that wording in parallel to my own patch.
* | Fix #17272 - Make Request.full_url and Request.get_full_url return same ↵Senthil Kumaran2013-05-241-0/+10
| | | | | | | | | | | | result under all circumstances. Document the change of Request.full_url to a property.
* | merge from 3.3Senthil Kumaran2013-05-231-5/+15
|\ \ | |/ | | | | Fix #18007 : Document CookieJar.add_cookie_header request parameter changes in 3.3 and 3.4.
| * Fix #18007 : Document CookieJar.add_cookie_header request parameter changes ↵Senthil Kumaran2013-05-231-5/+15
| | | | | | | | in 3.3
* | Merge issue 17844 from 3.3Nick Coghlan2013-05-231-30/+50
|\ \ | |/
| * Issue 17844: Clarify meaning of different codec tablesNick Coghlan2013-05-231-30/+50
| |
* | mergeRaymond Hettinger2013-05-231-4/+0
|\ \ | |/
| * Issue #18031: %-formatting isn't dead yet and might pull through.Raymond Hettinger2013-05-231-4/+0
| |
* | Issue #17844: Add links to encoders and decoders for bytes-to-bytes codecs.Serhiy Storchaka2013-05-221-27/+27
|\ \ | |/
| * Issue #17844: Add links to encoders and decoders for bytes-to-bytes codecs.Serhiy Storchaka2013-05-221-27/+27
| |
* | Fix issue #17996: expose socket.AF_LINK constant on BSD and OSX.Giampaolo Rodola'2013-05-211-0/+5
| |
* | merge #17973: fix technical inaccuracy in faq entry (it now passes doctest).R David Murray2013-05-211-5/+8
|\ \ | |/
| * #17973: fix technical inaccuracy in faq entry (it now passes doctest).R David Murray2013-05-211-5/+8
| |
* | Issue #18026: mergeNed Deily2013-05-201-1/+1
|\ \ | |/
| * Issue #18026: fix ctypes doc typoNed Deily2013-05-201-1/+1
| |
* | Merge #17973: Add FAQ entry for ([],)[0] += [1] both extending and raising.R David Murray2013-05-201-0/+83
|\ \ | |/
| * #17973: Add FAQ entry for ([],)[0] += [1] both extending and raising.R David Murray2013-05-201-0/+83
| | | | | | | | This has come up often enough now on the tracker that it deserves a FAQ entry.
* | #17955: minor updates to Functional howtoAndrew Kuchling2013-05-201-53/+91
| | | | | | | | | | | | | | | | | | * Describe compress() and accumulate() * Add a subsection on combinatoric functions. * Add a forward link to skip the theoretical discussion in the first section. * Clarify what filterfalse() is the opposite of. * Remove the old outline and some notes at the end. * Various small edits.
* | Issue #17914: Add os.cpu_count(). Patch by Yogesh Chaudhari, based on anCharles-Francois Natali2013-05-202-4/+10
| | | | | | | | initial patch by Trent Nelson.
* | #14097: merge with 3.3.Ezio Melotti2013-05-201-344/+257
|\ \ | |/