summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #10439: document PyCodec C APIs.Georg Brandl2010-11-203-4/+125
|
* #10460: Update indent.pro to match PEP 7 better.Georg Brandl2010-11-201-14/+11
|
* #10465: fix broken delegation in __getattr__ of _PaddedFile.Georg Brandl2010-11-203-1/+9
|
* Issue #9920: Skip tests for cmath.atan and cmath.atanh applied toMark Dickinson2010-11-203-8/+32
| | | | | complex zeros on systems where the log1p function fails to respect the sign of zero. This fixes a test failure on AIX.
* Issue #10325: Fix two issues in the fallback definitions of PY_LLONG_MAX andMark Dickinson2010-11-202-8/+19
| | | | PY_ULLONG_MAX in pyport.h. Thanks Hallvard B Furuseth for the patch.
* Regenerated configure and pyconfig.h.in.Mark Dickinson2010-11-202-522/+618
|
* Fix rst markup errors.Georg Brandl2010-11-201-2/+2
|
* Use correct markup for True/False/NoneEzio Melotti2010-11-201-11/+11
|
* Add configure-time test for log1p disrespecting zero sign.Mark Dickinson2010-11-201-3/+32
|
* Add a few labels and links to unittest docEzio Melotti2010-11-201-28/+41
|
* new plan: functions that want 'tmp' can declare itBenjamin Peterson2010-11-202-23/+6
|
* Fixes a timing-related failure on Windows (issue 10183)Brian Quinlan2010-11-201-3/+3
|
* Make test class name unique so that both test classes run.R. David Murray2010-11-201-1/+1
|
* c89 declarationsBenjamin Peterson2010-11-202-11/+11
|
* use %R format code; fixes invalid dereferencing #10391Benjamin Peterson2010-11-204-58/+43
|
* Do not put a raw REPLACEMENT CHARACTER in the document.Georg Brandl2010-11-191-1/+4
|
* remove documentation for something that's goneFred Drake2010-11-191-4/+0
|
* Fix test_ssl_presence when ssl is not presentAntoine Pitrou2010-11-191-2/+2
|
* Issue #4153: Updated Unicode HOWTO.Alexander Belopolsky2010-11-191-55/+47
|
* #10455: fix typoEzio Melotti2010-11-181-1/+1
|
* Issue 7828: Fixed chr() and ord() documentation for wide charactersAlexander Belopolsky2010-11-181-10/+14
|
* Wrap all test_nntplib methods accessing a remote server in a ↵Antoine Pitrou2010-11-181-13/+29
| | | | | | | transient_internet() exception catcher. Wrapping the initial connection routine is not sufficient as network timeouts can then occur as part of NNTP commands.
* Code Changes as per review comments by Antoine Pitrou.Senthil Kumaran2010-11-182-23/+10
|
* Fix usage of :option: in the docs (#9312).Éric Araujo2010-11-1813-159/+216
| | | | | | | | | | | | | | | | | :option: is used to create a link to an option of python, not to mark up any instance of any arbitrary command-line option. These were changed to ````. For modules which do have a command-line interface, lists of options have been properly marked up with the program/cmdoption directives combo. Options defined in such blocks can be linked to with :option: later in the same file, they won’t link to an option of python. Finally, the markup of command-line fragments in optparse.rst has been cleaned to use ``x`` instead of ``"x"``, keeping that latter form for actual Python strings. Patch by Eli Bendersky and Éric Araujo.
* Fix Issue2244 - urllib unquotes user and password info multiple times - ↵Senthil Kumaran2010-11-183-8/+18
| | | | Patch by Theodore Turocy
* Issue #10356: hash(Decimal("sNaN")) now raises ValueError instead of TypeError.Stefan Krah2010-11-183-2/+5
|
* Make test_nntplib more robust when the "last" article in a group can't be ↵Antoine Pitrou2010-11-181-9/+26
| | | | retrieved
* Fix Issue 9991: xmlrpc client ssl check faultySenthil Kumaran2010-11-182-1/+26
|
* Remove spurious space that was breaking Vim’s reST highlighting.Éric Araujo2010-11-181-1/+1
|
* reduce try block compassBenjamin Peterson2010-11-181-1/+2
|
* Issue 10260Kristján Valur Jónsson2010-11-183-7/+108
| | | | Adding the wait_for() method to threading.Condition
* 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
|