summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fix copy-editing level nitsFred Drake2010-11-131-103/+105
|
* use appropriate markupFred Drake2010-11-131-1/+1
|
* Switch from gmane to another provider for NNTP tests (as gmane isn't reliableAntoine Pitrou2010-11-131-32/+45
| | | | enough). Also, use setUpClass in order to connect only once per test run.
* And now for something completely different: Finish fixing #10252 again.Éric Araujo2010-11-121-1/+0
|
* Remove myself as a maintainer for curses and mailbox modules.Andrew M. Kuchling2010-11-121-2/+2
|
* Issue #4471: Add the IMAP.starttls() method to enable encryption onAntoine Pitrou2010-11-124-8/+63
| | | | standard IMAP4 connections. Original patch by Lorenzo M. Catucci.
* Add UUID for 3.2a4Martin v. Löwis2010-11-121-0/+1
|
* Add a deprecated-removed directive that allows to give the version of ↵Georg Brandl2010-11-121-0/+38
| | | | removal for deprecations.
* Fix weird line block in table.Georg Brandl2010-11-121-1/+0
|
* Switch to Sphinx 1.0.5.Georg Brandl2010-11-123-3/+3
|
* #10008: Fix duplicate index entry.Georg Brandl2010-11-121-0/+1
|
* Build a PDF of the FAQs too.Georg Brandl2010-11-121-0/+2
|
* (no commit message)Terry Reedy2010-11-121-5/+6
|
* #7950: add warning about security implications of shell=True to subprocess docsR. David Murray2010-11-121-0/+18
| | | | Patch by Chris Rebert.
* Issue #10389: Documented rules for use of case in section titles.Alexander Belopolsky2010-11-111-15/+58
|
* #1466065: add validate option to base64.b64decodeR. David Murray2010-11-114-9/+37
| | | | | | | Patch by Neil Tallim. This provides a mechanism for module users to achieve RFC 3548 compliance in the cases where ignoring non-base64-alphabet input characters is *not* mandated by the RFC that references RFC 3548.
* configparser.py: changed PendingDeprecationWarnings to DeprecationWarnings, ↵Łukasz Langa2010-11-111-9/+9
| | | | | | via http://mail.python.org/pipermail/python-dev/2010-November/105391.html configparser:py: renamed _views to _proxies to be consistent with the SectionProxy name
* Issue #10386: Added __all__ to token module; this simplifies importingAlexander Belopolsky2010-11-113-13/+14
| | | | | in tokenize module and prevents leaking of private names through import *.
* Review the new configparser docs.Georg Brandl2010-11-111-473/+475
|
* Disable test_python_builders in test_xmlrpc_net, following buildbot upgrade ↵Antoine Pitrou2010-11-101-0/+1
| | | | on python.org
* added myself as a maintainer of configparserŁukasz Langa2010-11-101-1/+1
|
* Issue #5412: extend configparser to support mapping accessŁukasz Langa2010-11-104-433/+1086
|
* getpath.c: fix test to detech PyUnicode_AsWideChar() failureVictor Stinner2010-11-101-4/+4
| | | | | | PyUnicode_AsWideChar() result is signed, whereas it was stored in a unsigned variable, and then the test was "n >= 0" which is always true to an unsigned number. Patch written by Hallvard B Furuseth.
* Issue #10372: Import the warnings module only after the IO library isAntoine Pitrou2010-11-103-7/+29
| | | | initialized, so as to avoid bootstrap issues with the '-W' option.
* Followup to r86383: it seems that in some cases (buildbots), the serverAntoine Pitrou2010-11-101-3/+9
| | | | closes the connection before we can call shutdown().
* Fix typo.Georg Brandl2010-11-101-1/+1
|
* Forward port r86386 after it fixed the 3.1 buildbot issuesAntoine Pitrou2010-11-101-3/+6
|
* Issue #4471: Properly shutdown socket in IMAP.shutdown(). Patch byAntoine Pitrou2010-11-094-0/+6
| | | | Lorenzo M. Catucci.
* Fix IMAP.login() to work properly.Antoine Pitrou2010-11-093-6/+48
| | | | Also, add remote tests for imaplib (part of #4471).
* Preserve the original environment (e.g. LD_LIBRARY_PATH)Antoine Pitrou2010-11-091-4/+5
|
* Remove uneeded NEWS entries for minor documentation updates.Ask Solem2010-11-091-6/+0
|
* Issue #8028: multiprocessing: Documented that ``Process.terminate``Ask Solem2010-11-092-3/+6
| | | | is only intented for use by the parent process.
* Issue #7707: Documented that multiprocessing.Queue operations duringAsk Solem2010-11-092-1/+6
| | | | import can lead to deadlocks.
* Documented the new error_callback keyword argument to multiprocessing.Pool's ↵Ask Solem2010-11-091-5/+19
| | | | apply_async and map_async
* Use script_helper in one more testAntoine Pitrou2010-11-092-35/+35
|
* Added missing NEWS entry for my previous commit (r86370).Ask Solem2010-11-091-0/+10
|
* Issue #9244: multiprocessing.pool: Worker crashes if result can't be encodedAsk Solem2010-11-092-10/+88
|
* Issue #10022: The dictionary returned by the `getpeercert()` methodAntoine Pitrou2010-11-094-59/+63
| | | | of SSL sockets now has additional items such as `issuer` and `notBefore`.
* Make `usenetrc` False by default (the old behaviour of having it True byAntoine Pitrou2010-11-093-8/+12
| | | | default could be rather confusing).
* Issue #1926: Add support for NNTP over SSL on port 563, as well asAntoine Pitrou2010-11-095-102/+310
| | | | STARTTLS. Patch by Andrew Vant.
* Issue #7061: Added a 'Turtle star' sidebarAlexander Belopolsky2010-11-095-0/+467
|
* Fix issue10324 - Modules/binascii.c: simplify expressionsSenthil Kumaran2010-11-091-2/+1
|
* Issue #10359: Remove useless (duplicate) initialization in _csvVictor Stinner2010-11-091-1/+1
|
* Issue #10359: Remove useless comma, invalid in ISO CVictor Stinner2010-11-091-2/+2
|
* Issue #10359: Use Py_UNICODE for the typecode in arrayVictor Stinner2010-11-091-7/+9
| | | | And don't create non constant array, invalid in ISO C.
* Issue #10359: Remove ";" after function definition, invalid in ISO CVictor Stinner2010-11-094-4/+4
|
* Simplify codeRaymond Hettinger2010-11-091-14/+3
|
* Fixed a typo in ReST markup.Alexander Belopolsky2010-11-091-2/+1
|
* Fix Issue10205 - XML QName error when different tags have same QName.Senthil Kumaran2010-11-092-2/+8
|
* test_tokenize: use self.assertEqual() instead of plain assertVictor Stinner2010-11-091-4/+4
|