summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Issue #12196: Make os.pipe2() flags argument mandatory.Charles-François Natali2011-06-061-3/+3
|
* Issue #12040: Expose a new attribute `sentinel` on instances ofAntoine Pitrou2011-06-061-0/+14
| | | | | :class:`multiprocessing.Process`. Also, fix Process.join() to not use polling anymore, when given a timeout.
* Branch mergeÉric Araujo2011-06-063-10/+8
|\
| * Merge ABC and distutils touch-ups from 3.2.Éric Araujo2011-06-043-9/+7
| |\ | | | | | | | | | | | | | | | | | | | | | I have removed the reST target I added in 38cdca2cc253: it is not necessary, as people can link to the glossary entry or the abc module without it. Two indentation fixes from 3.2 collections.rst have been ported to 3.3 collections.abc.rst.
| | * Improve glossary entry for ABCs.Éric Araujo2011-06-043-7/+8
| | | | | | | | | | | | | | | | | | | | | - Rename reST target name for collections ABCs to avoid collisions - Add link to importlib ABCs (collections, numbers and io ABCs were already linked) - Link to glossary entry from numbers module doc (other modules already do it)
| | * Remove link that’s already present at the top of the fileÉric Araujo2011-06-031-3/+0
| | |
| | * Fix named tuples to work with vars().Raymond Hettinger2011-06-031-0/+2
| | |
| * | Point to new collections.abc module for collections ABCsÉric Araujo2011-06-031-1/+1
| | |
* | | merge heads.Gregory P. Smith2011-06-0536-106/+2914
|\ \ \ | |/ /
| * | Fix reST label for collections ABCs.Éric Araujo2011-06-033-3/+5
| | | | | | | | | | | | | | | | | | The previous markup hijacked the abstract-base-classes glossary entry, which resulted in the HTML linking to collections.abc when defining the generic ABC concept. Now the glossary links to the abc module.
| * | Merge packaging doc fixÉric Araujo2011-06-021-6/+9
| |\ \
| | * | Packaging doc: Add missing index file, improve main page description.Éric Araujo2011-06-021-6/+9
| | | | | | | | | | | | | | | | Also promote notices from distutils doc to deprecation boxes.
| * | | mergeRaymond Hettinger2011-06-011-22/+32
| |\ \ \ | | |/ / | |/| / | | |/
| | * Forward port doc updates for builtin functions.Raymond Hettinger2011-06-011-22/+32
| | |
| * | Add documentation for the packaging module.Éric Araujo2011-06-0120-0/+2690
| | | | | | | | | | | | | | | This updates the user guide to refer to Packaging instead of Distutils. Some files still require an update.
| * | Close #12028: Make threading._get_ident() public, rename it toVictor Stinner2011-05-302-8/+18
| | | | | | | | | | | | | | | threading.get_ident() and document it. This function was used by _thread.get_ident().
| * | Close #12171: IncrementalEncoder.reset() of CJK codecs (multibytecodec) callsVictor Stinner2011-05-301-1/+2
| | | | | | | | | | | | encreset() instead of decreset().
| * | Issue #12196: Add pipe2() to the os module.Charles-François Natali2011-05-291-0/+13
| | |
| * | Merge 3.2Éric Araujo2011-05-291-3/+3
| |\ \ | | |/
| | * Merge 3.1Éric Araujo2011-05-291-3/+3
| | |\
| | | * Don’t misuse “package data” in pprint exampleÉric Araujo2011-05-291-3/+3
| | | |
| * | | Put version* directives at the right scopeÉric Araujo2011-05-291-14/+6
| | | |
| * | | Improve example for crypt module. No string exceptions..Éric Araujo2011-05-291-5/+7
| | | |
| * | | Merge touch-ups and fixes for #9831 (+port fix to packaging) and #9223 from 3.2Éric Araujo2011-05-281-1/+1
| |\ \ \ | | |/ /
| | * | Merge doc touch-ups and fixes for #9831 and #9223 from 3.1Éric Araujo2011-05-281-1/+1
| | |\ \ | | | |/
| | | * Minor doc addition for clarityÉric Araujo2011-05-271-1/+1
| | | |
| * | | Revert my commit 3555cf6f9c98: "Issue #8796: codecs.open() calls the builtinVictor Stinner2011-05-271-25/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | open() function instead of using StreamReaderWriter. Deprecate StreamReader, StreamWriter, StreamReaderWriter, StreamRecoder and EncodedFile() of the codec module. Use the builtin open() function or io.TextIOWrapper instead." "It has not been approved !" wrote Marc-Andre Lemburg.
| * | | Merge headsNadeem Vawda2011-05-271-8/+31
| |\ \ \
| | * | | Update bz2 docs following issue #1625.Nadeem Vawda2011-05-261-8/+31
| | | | |
| * | | | Issue #8796: codecs.open() calls the builtin open() function instead of usingVictor Stinner2011-05-261-0/+25
| |/ / / | | | | | | | | | | | | | | | | | | | | StreamReaderWriter. Deprecate StreamReader, StreamWriter, StreamReaderWriter, StreamRecoder and EncodedFile() of the codec module. Use the builtin open() function or io.TextIOWrapper instead.
| * | | Branch mergeÉric Araujo2011-05-261-0/+4
| |\ \ \
| | * \ \ Branch mergeÉric Araujo2011-05-251-0/+4
| | |\ \ \
| | | * | | Also add versionchanged directive to the function doc (#11591)Éric Araujo2011-05-061-0/+4
| | | | | |
| * | | | | Fix closes issue #11109 - socketserver.ForkingMixIn leaves zombies, also ↵Senthil Kumaran2011-05-251-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fails to reap all zombies in one pass. A new method called service_action is made available in BaseServer, called by serve_forever loop. This useful in cases where Mixins can use it for cleanup action. ForkingMixin class uses service_action to collect the zombie child processes. Initial Patch by Justin Wark.
| * | | | | Issue #12049: cleanup the warning in the random module docVictor Stinner2011-05-251-2/+2
| | | | | |
| * | | | | Issue #12049: Document errors cases of ssl.RAND_bytes() andVictor Stinner2011-05-251-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | ssl.RAND_pseudo_bytes(). Add also links to RAND_status and RAND_add.
| * | | | | Issue #12049: improve RAND_bytes() and RAND_pseudo_bytes() documentationVictor Stinner2011-05-242-0/+16
| |/ / / / | | | | | | | | | | | | | | | Add also a security warning in the module random pointing to ssl.RAND_bytes().
| * | | | Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the sslVictor Stinner2011-05-241-3/+17
| | | | | | | | | | | | | | | | | | | | module.
| * | | | Clean-up example.Raymond Hettinger2011-05-231-31/+41
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | Clean-up example.Raymond Hettinger2011-05-231-31/+41
| | | | |
| | * | | Simplify exampleRaymond Hettinger2011-05-211-4/+0
| | | | |
* | | | | Further documentation updates to be consistent with doc standards and commentsGregory P. Smith2011-05-231-7/+7
|/ / / / | | | | | | | | | | | | Ezio Melotti pointed out.
* | | | Update documentation to mention bytes instead byte string and correct oneGregory P. Smith2011-05-231-3/+4
| | | | | | | | | | | | | | | | mentioned string to the accurate description of what type is required.
* | | | Refer to the return value on nameindex and friends as a string, not a byteGregory P. Smith2011-05-231-3/+3
| | | | | | | | | | | | | | | | | | | | string. The code was fixed to return strings instead of bytes and to accept either.
* | | | Issue #12105: Add O_CLOEXEC to the os module.Charles-François Natali2011-05-221-0/+1
| | | |
* | | | Simplify exampleRaymond Hettinger2011-05-211-4/+0
| | | |
* | | | merge 3.2Benjamin Peterson2011-05-201-1/+1
|\ \ \ \ | |/ / /
| * | | merge 3.1Benjamin Peterson2011-05-201-1/+1
| |\ \ \ | | | |/ | | |/|
| | * | this should actually be an IOErrorBenjamin Peterson2011-05-201-1/+1
| | | |
* | | | merge 3.2Benjamin Peterson2011-05-201-1/+20
|\ \ \ \ | |/ / /