summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs whenGregory P. Smith2008-09-301-0/+4
| | | | | | | calling fork() from a child thread. This disables that unit test (with a note printed to stderr) on those platforms. A caveat about buggy platforms is added to the os.fork documentation.
* Markup fixes. (optparse.rst probably needs an entire revision pass.)Andrew M. Kuchling2008-09-303-16/+16
|
* Edits, and add markupAndrew M. Kuchling2008-09-301-4/+4
|
* issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick ↵Jesse Noller2008-09-301-0/+7
| | | | Coghlan, Damien Miller
* Issue #3965: Allow repeated calls to turtle.Screen, by making it aMartin v. Löwis2008-09-291-4/+4
| | | | | | true singleton object. Reviewed by Gregor Lingl.
* note the 2to3 -d could be useful for other refactoringBenjamin Peterson2008-09-281-1/+3
|
* better grammarBenjamin Peterson2008-09-281-1/+1
|
* #1415508: Document two functionsAndrew M. Kuchling2008-09-281-6/+21
|
* #1579477: mention necessity to flush output before exec'ingAndrew M. Kuchling2008-09-281-3/+10
|
* #3510: future-proof textAndrew M. Kuchling2008-09-271-3/+4
|
* 2to3's api should be considered unstableBenjamin Peterson2008-09-271-0/+6
|
* Improve wordingAndrew M. Kuchling2008-09-241-7/+7
|
* Indentation normalization.Georg Brandl2008-09-241-2/+2
|
* clean up docs for platform's linux_distribution and dist functionsBenjamin Peterson2008-09-221-16/+10
|
* #3918: note that uniform() args can be swapped.Georg Brandl2008-09-211-1/+3
|
* #3912: document default for *places* arg.Georg Brandl2008-09-211-2/+4
|
* #3852: fix some select.kqueue and kevent docs.Georg Brandl2008-09-211-3/+3
|
* Improve docs for super().Raymond Hettinger2008-09-191-1/+18
|
* Fix for documentation bug. Fixes issue 3904.Josiah Carlson2008-09-191-2/+2
|
* document compileall command flagsBenjamin Peterson2008-09-171-2/+7
|
* usageSkip Montanaro2008-09-171-1/+1
|
* be less wordyBenjamin Peterson2008-09-161-6/+6
|
* clarify that radix for int is not 'guessed'Benjamin Peterson2008-09-141-8/+8
|
* Remove things specific to the old Macintosh, and spell "Mac OS X" consistently.Georg Brandl2008-09-1321-169/+157
|
* #3288: Document as_integer_ratioAndrew M. Kuchling2008-09-131-1/+12
|
* Remove extra 'the'; the following title includes itAndrew M. Kuchling2008-09-131-1/+1
|
* fix typoBenjamin Peterson2008-09-111-3/+3
|
* Issue #3781: Final cleanup of warnings.catch_warnings and its usage in the ↵Nick Coghlan2008-09-112-28/+45
| | | | test suite. Closes issue w.r.t. 2.6 (R: Brett Cannon)
* Issue #3811: The Unicode database was updated to 5.1.Martin v. Löwis2008-09-101-2/+2
| | | | Reviewed by Fredrik Lundh and Marc-Andre Lemburg.
* warnings.catch_warnings() now returns a list or None instead of the customBrett Cannon2008-09-091-38/+74
| | | | | | | | WarningsRecorder object. This makes the API simpler to use as no special object must be learned. Closes issue 3781. Review by Benjamin Peterson.
* incorporate fixes from issue 3162; SSL doc patchBill Janssen2008-09-081-2/+3
|
* Added xrefs to each other.Mark Summerfield2008-09-082-2/+7
|
* #1317: describe the does_esmtp, ehlo_resp, esmtp_features, and helo_resp ↵Andrew M. Kuchling2008-09-061-1/+9
| | | | attributes
* #3669 from Robert Lehmann: simplify use of iterator in exampleAndrew M. Kuchling2008-09-061-1/+1
|
* #1638033: add support for httponly on Cookie.MorselBenjamin Peterson2008-09-061-1/+9
| | | | Reviewer: Benjamin
* #3040: include 'dest' argument in example; trim some trailing whitespaceAndrew M. Kuchling2008-09-061-3/+3
|
* actually tell the name of the flag to useBenjamin Peterson2008-09-061-7/+7
|
* Fix typo in multiprocessing doc, cancel_join_thread was missing _threadJesse Noller2008-09-061-1/+1
|
* Deprecate bsddb for removal in Python 3.0.Brett Cannon2008-09-052-4/+5
| | | | | Closes issue 3776. Review by Nick Coghlan.
* Make it more obvious that warnings.catch_warnings() and its arguments should ↵Brett Cannon2008-09-051-1/+1
| | | | be considered keyword-only.
* flesh out the documentation on using 2to3Benjamin Peterson2008-09-041-14/+35
|
* Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi moduleFacundo Batista2008-09-033-38/+46
| | | | | to the urlparse one. Added a PendingDeprecationWarning in the old module, it will be deprecated in the future. Docs and tests updated.
* Merged revisions 66173 via svnmerge fromBenjamin Peterson2008-09-031-2/+4
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66173 | benjamin.peterson | 2008-09-02 18:57:48 -0500 (Tue, 02 Sep 2008) | 8 lines A little 2to3 refactoring #3637 This moves command line logic from refactor.py to a new file called main.py. RefactoringTool now merely deals with the actual fixers and refactoring; options processing for example is abstracted out. This patch was reviewed by Gregory P. Smith. ........
* typo fixAndrew M. Kuchling2008-09-021-1/+1
|
* Move test.test_support.catch_warning() to the warnings module, rename itBrett Cannon2008-09-021-0/+50
| | | | | | | | | | | catch_warnings(), and clean up the API. While expanding the test suite, a bug was found where a warning about the 'line' argument to showwarning() was not letting functions with '*args' go without a warning. Closes issue 3602. Code review by Benjamin Peterson.
* remove py3k warnings about the threading api; update docsBenjamin Peterson2008-09-011-5/+6
| | | | Reviewer: Benjamin Peterson
* Bug #3738: Documentation is now more accurate in describing handler close ↵Vinay Sajip2008-09-011-4/+6
| | | | methods.
* Added section about configuring logging in a library. Thanks to Thomas ↵Vinay Sajip2008-09-011-0/+39
| | | | Heller for the idea.
* #3749: fix c'n'p errors.Georg Brandl2008-09-011-3/+3
|
* Fix markup.Georg Brandl2008-08-301-1/+1
|