summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Closes #19323: fix typo. Thanks to Michael Merickel.Georg Brandl2013-10-211-1/+1
|
* Simplify markup.Georg Brandl2013-10-211-2/+2
|
* Reformat statistics.rst and remove unnecessary headings for each function.Georg Brandl2013-10-211-197/+139
|
* #19274: use captured_stdout() in the test suite; add NEWS entry.Georg Brandl2013-10-211-3/+3
|
* Issue #19271: By Python3.4, the Python 2.4 backport links are no longer of ↵Raymond Hettinger2013-10-211-13/+0
| | | | much interest.
* Update faulthandler docs.Guido van Rossum2013-10-211-1/+2
|
* add a filterfunc to zip file.PyZipFile.writepy, issue 19274Christian Tismer2013-10-212-2/+18
|
* #19319: merge with 3.3.Ezio Melotti2013-10-211-2/+2
|\
| * #19319: fix ctypes docs: sizeof is an operator in C, not a function.Ezio Melotti2013-10-211-2/+2
| |
* | #19238, #19289: merge with 3.3.Ezio Melotti2013-10-201-6/+6
|\ \ | |/
| * #19238, #19289: fix description of the align and fill values of the format ↵Ezio Melotti2013-10-201-6/+6
| | | | | | | | specification.
* | remove backticksBenjamin Peterson2013-10-201-1/+1
| |
* | fix declaration of StatisticsErrorBenjamin Peterson2013-10-201-2/+2
| |
* | What's New updates prior to alphaNick Coghlan2013-10-202-11/+63
| |
* | Tweak 'provisional' in glossaryNick Coghlan2013-10-201-6/+13
| |
* | Issue #19304: Fix typos noted by Claudiu Popa.Ned Deily2013-10-191-2/+2
| |
* | Issue #18606: Add the new "statistics" module (PEP 450). ContributedLarry Hastings2013-10-192-0/+464
| | | | | | | | by Steven D'Aprano.
* | Issue #12866: The audioop module now supports 24-bit samples.Serhiy Storchaka2013-10-192-8/+17
| |
* | Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-197-20/+20
| |
* | Doc markup fixes.Georg Brandl2013-10-192-4/+4
| |
* | contextlib doc updates and refactoringNick Coghlan2013-10-191-0/+116
| | | | | | | | | | | | | | | | | | | | | | - explain single use, reusable and reentrant in docs - converted suppress to a reentrant class based impl - converted redirect_stdout to a reusable impl - moved both suppress and redirect_stdout behind a functional facade - added reentrancy tests for the updated suppress - added reusability tests for the updated redirect_stdio - slightly cleaned up an exception from contextmanager
* | Issue #18582: provide a faster C implementation of pbkdf2_hmac that works ↵Christian Heimes2013-10-191-5/+3
| | | | | | | | with OpenSSL < 1.0
* | Issue #19254: Provide an optimized Python implementation of PBKDF2_HMACChristian Heimes2013-10-191-1/+5
| |
* | Issue #19222: Add support for the 'x' mode to the gzip module.Nadeem Vawda2013-10-181-4/+11
| | | | | | | | Original patch by Tim Heaney.
* | Issue #19223: Add support for the 'x' mode to the bz2 module.Nadeem Vawda2013-10-181-4/+11
| | | | | | | | Patch by Tim Heaney and Vajrasky Kok.
* | Issue #19201: Add support for the 'x' mode to the lzma module.Nadeem Vawda2013-10-181-4/+11
| | | | | | | | Patch by Tim Heaney and Vajrasky Kok.
* | merge 3.3Benjamin Peterson2013-10-181-1/+1
|\ \ | |/
| * fix description of super() behavior on descriptorsBenjamin Peterson2013-10-181-1/+1
| |
* | Issue #18416: Have importlib.machinery.PathFinder treat '' as the cwdBrett Cannon2013-10-182-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and stop importlib.machinery.FileFinder treating '' as '.'. Previous PathFinder transformed '' into '.' which led to __file__ for modules imported from the cwd to always be relative paths. This meant the values of the attribute were wrong as soon as the cwd changed. This change now means that as long as the site module is run (which makes all entries in sys.path absolute) then all values for __file__ will also be absolute unless it's for __main__ when specified by file path in a relative way (modules imported by runpy will have an absolute path). Now that PathFinder is no longer treating '' as '.' it only makes sense for FileFinder to stop doing so as well. Now no transformation is performed for the directory given to the __init__ method. Thanks to Madison May for the initial patch.
* | Issue #16129: Py_SetStandardStreamEncoding cleanupsNick Coghlan2013-10-181-5/+8
| | | | | | | | | | | | | | | | | | - don't call PyErr_NoMemory with interpreter is not initialised - note that it's OK to call _PyMem_RawStrDup here - don't include this in the limited API - capitalise "IO" - be explicit that a non-zero return indicates an error - include versionadded marker in docs
* | Fix markup.Serhiy Storchaka2013-10-181-2/+2
|\ \ | |/
| * Fix markup.Serhiy Storchaka2013-10-181-2/+2
| |
* | Issue #19272: slight clarification of pickle docs with regard to lambda.Ethan Furman2013-10-181-2/+6
| |
* | Close #19030: inspect.getmembers and inspect.classify_class_attrsEthan Furman2013-10-181-3/+3
| | | | | | | | | | | | | | | | | | | | Order of search is now: 1. Try getattr 2. If that throws an exception, check __dict__ directly 3. If still not found, walk the mro looking for the eldest class that has the attribute (e.g. things returned by __getattr__) 4. If none of that works (e.g. due to a buggy __dir__, __getattr__, etc. method or missing __slot__ attribute), ignore the attribute entirely.
* | merge with 3.3Georg Brandl2013-10-171-2/+1
|\ \ | |/
| * Fix inaccurate versionchanged tag for compressobj(): most parameter were ↵Georg Brandl2013-10-171-2/+1
| | | | | | | | there, just got kwarg support.
* | Close #19266: contextlib.ignore -> contextlib.suppressNick Coghlan2013-10-172-13/+26
| | | | | | | | Patch by Zero Piraeus.
* | Issue #16129: Add `Py_SetStandardStreamEncoding`Nick Coghlan2013-10-172-1/+31
| | | | | | | | | | | | | | | | | | | | | | This new pre-initialization API allows embedding applications like Blender to force a particular encoding and error handler for the standard IO streams. Also refactors Modules/_testembed.c to let us start testing multiple embedding scenarios. (Initial patch by Bastien Montagne)
* | #18891: Complete new provisional email API.R David Murray2013-10-175-15/+480
| | | | | | | | | | | | | | | | | | | | | | | | This adds EmailMessage and, MIMEPart subclasses of Message with new API methods, and a ContentManager class used by the new methods. Also a new policy setting, content_manager. Patch was reviewed by Stephen J. Turnbull and Serhiy Storchaka, and reflects their feedback. I will ideally add some examples of using the new API to the documentation before the final release.
* | Issue #18999: Make multiprocessing use context objects.Richard Oudkerk2013-10-161-11/+65
| | | | | | | | | | This allows different parts of a program to use different methods for starting processes without interfering with each other.
* | Issue #18725: The textwrap module now supports truncating multiline text.Serhiy Storchaka2013-10-151-12/+16
| |
* | Issue #19189: Improved cross-references in the pickle module documentation.Serhiy Storchaka2013-10-141-18/+23
|\ \ | |/
| * Issue #19189: Improved cross-references in the pickle module documentation.Serhiy Storchaka2013-10-141-18/+23
| |
* | #4965: merge with 3.3.Ezio Melotti2013-10-132-6/+46
|\ \ | |/
| * #4965: Implement intelligent scrolling of the sidebar in the docs.Ezio Melotti2013-10-132-6/+46
| |
| * Merge headsSerhiy Storchaka2013-10-132-3/+2
| |\
* | \ Merge headsSerhiy Storchaka2013-10-133-3/+4
|\ \ \
| * | | Fix spacing of toplevel items.Georg Brandl2013-10-131-0/+2
| | | |
| * | | merge with 3.3Georg Brandl2013-10-131-2/+1
| |\ \ \ | | | |/ | | |/|
| | * | Wing IDE is switching to PyQt...Georg Brandl2013-10-131-2/+1
| | | |