summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove duplicate period from reference docMichael Foord2010-11-181-1/+1
|
* Issue #10446 NEWS entryAlexander Belopolsky2010-11-181-0/+3
|
* Fix a minor inconsistency in capitalization for the 'No module named' exceptionBrett Cannon2010-11-182-3/+7
| | | | | | message in importlib. Thanks to Éric Araujo for spotting the inconsistency.
* Fix #8886. Use context managers throughout the test.Brian Curtin2010-11-182-105/+113
|
* Issue #10446: Several changes to module documentation generated by pydoc:Alexander Belopolsky2010-11-184-42/+39
| | | | | | | | | | | | | | | 1. Online reference manual link is now version-specific and the 'MODULE DOCS' section renamed to 'MODULE REFERENCE'. 2. 'FILE' section is moved to the end of the file. 3. Special names processed by pydoc such as __version__ or __credits__ are now excluded from the DATA section. 4. Defined __all__ to prevent pydoc from exposing undocumented details about itself. 5. Removed Python 2.3 compatibility code.
* handle dict subclasses gracefully in PyArg_ValidateKeywordArgumentsBenjamin Peterson2010-11-174-6/+14
|
* Use laxer timeouts in barrier testsAntoine Pitrou2010-11-171-5/+5
|
* Issue #9518: Extend the PyModuleDef_HEAD_INIT macro to explicitlyDavid Malcolm2010-11-172-1/+11
| | | | | | zero-initialize all fields, fixing compiler warnings seen when building extension modules with gcc with "-Wmissing-field-initializers" (implied by "-W")
* Issue #10443: Add the SSLContext.set_default_verify_paths() method.Antoine Pitrou2010-11-174-0/+29
|
* Issue #10440: Support RUSAGE_THREAD as a constant in the resource module.Antoine Pitrou2010-11-174-4/+22
| | | | Patch by Robert Collins.
* Issue #10356: Decimal(-1).__hash__() should equal hash(Decimal(-1)).Stefan Krah2010-11-173-15/+25
|
* Removes an inefficient spin loop in as_completedBrian Quinlan2010-11-171-6/+35
|
* Fix typoEzio Melotti2010-11-161-1/+1
|
* Modules/_io/bufferedio.c (buffered_dealloc_warn): Make it static.Matthias Klose2010-11-161-1/+1
|
* Provide links to Python source where the code is short, readable andÉric Araujo2010-11-1629-0/+134
| | | | | informative adjunct to the docs. Forward-port of Raymond's r86225 and r86245 using the new source reST role added in #10334.
* Issue #10429: IMAP.starttls() stored the capabilities as bytes objects,Antoine Pitrou2010-11-163-11/+20
| | | | rather than strings.
* Avoid some BytesWarnings when running test_imaplib in verbose modeAntoine Pitrou2010-11-161-2/+2
|
* Post-release bumps.Georg Brandl2010-11-162-1/+13
|
* Add stub for PEP 3148.Georg Brandl2010-11-161-0/+5
|
* Issue #10413: Updated comments to reflect code changesAlexander Belopolsky2010-11-161-18/+13
|
* Logging: added stack_info argument.Vinay Sajip2010-11-143-21/+113
|
* Issue 10410: An iterable is not necessarily a container.Raymond Hettinger2010-11-141-1/+1
|
* Tagging 3.2a4.Georg Brandl2010-11-131-0/+1
|
* Minor edits.v3.2a4Georg Brandl2010-11-131-108/+102
|
* Fix Issue5111 - Wrap the Ipv6 host with [] in the Host headerSenthil Kumaran2010-11-133-0/+28
|
* Streamline a cmath test (and fix some overlong lines into the bargain).Mark Dickinson2010-11-131-4/+2
|
* Make Fraction(-1).__hash__() return -2 rather than -1 (see issue 10356).Mark Dickinson2010-11-133-6/+9
|
* Bump to 3.2a4.Georg Brandl2010-11-136-7/+7
|
* Ignore suspicious-ignore file.Georg Brandl2010-11-131-6/+9
|
* Update pydoc topics.Georg Brandl2010-11-131-10/+10
|
* 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