summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in updated dis docsNick Coghlan2013-11-061-1/+1
|
* Close #19378: address flaws in the new dis module APIsNick Coghlan2013-11-061-18/+23
| | | | | | | | | | | | | | | - confusing line_offset parameter -> first_line parameter - systematically test and fix new file parameter - remove redundant Bytecode.show_info() API - rename Bytecode.display_code() to Bytecode.dis() and have it return the multi-line string rather than printing it directly - eliminated some not-so-helpful helpers from the bytecode_helper test support module Also fixed a longstanding defect (worked around in the test suite) where lines emitted by the dis module could include trailing white space. That no longer happens, allowing the formatting tests to be simplified to use plain string comparisons.
* doc: fix typoVictor Stinner2013-11-061-1/+1
|
* Issue #10197 Tweak docs for subprocess.getstatusoutput and align the ↵Tim Golden2013-11-051-3/+3
| | | | documentation, the module docstring, and the function docstring.
* Closes #18345: Merged documentation update from 3.3.Vinay Sajip2013-11-051-0/+135
|\
| * Issue #18345: Added cookbook example illustrating handler customisation.Vinay Sajip2013-11-051-0/+135
| |
| * MergeTim Golden2013-11-031-6/+10
| |\
* | | Fix functools.partialmethod docs and __all__Nick Coghlan2013-11-041-2/+2
| | |
* | | Note that examples are sorted only for convenience.Georg Brandl2013-11-041-0/+3
| | |
* | | #18678: Correct names of spwd struct members.R David Murray2013-11-041-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The old names (sp_nam and sp_pwd) are kept for backward compatibility. Since this is a long standing bug that hasn't caused any real-world problems, I'm not backporting it. However, it is worth fixing because the corrected names match the documentation, and more importantly now match the C struct, just like the other struct members. Patch by Vajrasky Kok.
* | | MergeTim Golden2013-11-031-1/+1
|\ \ \
| * \ \ Merge #19411: Clarify that b2a_hex/hexlify returns a bytes object.R David Murray2013-11-031-1/+1
| |\ \ \ | | |/ /
| | * | #19411: Clarify that b2a_hex/hexlify returns a bytes object.R David Murray2013-11-031-1/+1
| | | | | | | | | | | | | | | | Initial patch by Vajrasky Kok.
* | | | Issue #10197: Indicate availability of subprocess.get[status]output on ↵Tim Golden2013-11-031-6/+10
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| Windows and add a note about the effects of universal newlines
| * | Issue #10197: Indicate availability of subprocess.get[status]output on ↵Tim Golden2013-11-031-6/+10
| |/ | | | | | | Windows and add a note about the effects of universal newlines
| * Issue #19452: Clarify the documentation of iterparse w.r.t. events argument.Eli Bendersky2013-10-311-1/+1
| | | | | | | | | | In 3.3 iterparse accepts a tuple in events (the C accelerator enforces this). This limitation was lifted in Python 3.4
* | Close #19403: make contextlib.redirect_stdout reentrantNick Coghlan2013-11-031-40/+77
| |
* | Issue #4331: Added functools.partialmethodNick Coghlan2013-11-032-2/+61
| | | | | | | | Initial patch by Alon Horev
* | #15114: The html.parser module now raises a DeprecationWarning when the ↵Ezio Melotti2013-11-021-2/+2
| | | | | | | | strict argument of HTMLParser or the HTMLParser.error method are used.
* | Issue #19410: Put back in special-casing of '' forBrett Cannon2013-11-012-6/+0
| | | | | | | | | | | | | | | | | | importlib.machinery.FileFinder. While originally moved to stop special-casing '' as PathFinder farther up the typical call chain now uses the cwd in the instance of '', it was deemed an unnecessary risk to breaking subclasses of FileFinder to take the special-casing out.
* | Merged documentation update from 3.3.Vinay Sajip2013-10-311-7/+8
|\ \ | |/
| * Corrected some incorrect cross-references.Vinay Sajip2013-10-311-7/+8
| |
* | Issue #19172: Add a get_map() method to selectors.Charles-François Natali2013-10-301-0/+8
| |
* | mergeChristian Heimes2013-10-291-1/+1
|\ \ | |/
| * fix languageChristian Heimes2013-10-291-1/+1
| |
* | Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove ↵Christian Heimes2013-10-292-0/+12
|\ \ | |/ | | | | | | | | OpenSSL re-seeding It is causing trouble like e.g. hanging processes.
| * Issue #18747: document issue with OpenSSL's CPRNG state and forkChristian Heimes2013-10-292-0/+12
| |
* | merge with 3.3Georg Brandl2013-10-294-6/+6
|\ \ | |/
| * Clarify sentence.Georg Brandl2013-10-291-1/+1
| |
| * Closes #19416: fix references in the nntplib docs.Georg Brandl2013-10-291-3/+3
| |
| * Fix wrong signature for two-argument newwin(). Found by Jacqueline Leykam ↵Georg Brandl2013-10-291-1/+1
| | | | | | | | on docs@.
| * Fix typo: js_JP is not a valid locale.Georg Brandl2013-10-291-1/+1
| |
* | merge with 3.3Georg Brandl2013-10-274-19/+17
|\ \ | |/
| * Fix markup errors in the docs and amend suspicious ignores.Georg Brandl2013-10-274-19/+17
| |
* | merge with 3.3Georg Brandl2013-10-272-5/+12
|\ \ | |/
| * Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more thanGeorg Brandl2013-10-271-1/+1
| | | | | | | | 100 headers are read. Adapted from patch by Jyrki Pulliainen.
| * Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125,Georg Brandl2013-10-271-4/+11
| | | | | | | | | | for security reasons. It now doesn't match multiple wildcards nor wildcards inside IDN fragments.
* | Assorted 3.4 What's New updatesNick Coghlan2013-10-262-59/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | - cross-references and attributions for inspect changes - note improvements to inspect and pydoc handling of metaclasses and dynamic attributes (courtesy of the enum PEP) - group all CPython implementation specific changes into a common section - add see also links for most of the PEPs - fix the see also link for the release PEP - add suitable caveats on Argument Clinic inclusion - clarify the change to __wrapped__ handling
* | Issue #19375: The site module adding a "site-python" directory to sys.path, ↵Antoine Pitrou2013-10-252-1/+5
| | | | | | | | if it exists, is now deprecated.
* | mergeBrett Cannon2013-10-251-0/+3
|\ \
| * \ Merge.bquinlan2013-10-251-0/+4
| |\ \
| * | | Issue #11161: Update the documentation for ProcessPoolExecutor to note that ↵bquinlan2013-10-251-0/+3
| | | | | | | | | | | | | | | | it will not work in the interactive shell.
* | | | Tweak some doc wording for importlib.reloadBrett Cannon2013-10-251-2/+3
| |/ / |/| |
* | | merge from 3.3Brett Cannon2013-10-251-0/+4
|\ \ \ | |/ / |/| / | |/
| * Issue #19392: Document that imp.reload() now relies on __loader__Brett Cannon2013-10-251-0/+4
| | | | | | | | being defined on top of __name__.
* | Issue #16595: prlimit() needs Linux kernel 2.6.36+Christian Heimes2013-10-251-1/+1
| |
* | #17400: correct handling of 100.64.0.0/10, fixing the docs and updating NEWSPeter Moody2013-10-241-0/+6
| |
* | Close #19345: fix typoVictor Stinner2013-10-231-2/+2
| |
* | #17400: fix documentation, add cache to is_global and correctly handle ↵Peter Moody2013-10-221-1/+1
| | | | | | | | 100.64.0.0/10
* | Issue #15207: Fix mimetypes to read from correct area in Windows registry ↵Tim Golden2013-10-221-0/+3
|\ \ | |/ | | | | (Original patch by Dave Chambers)