Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #10439: document PyCodec C APIs. | Georg Brandl | 2010-11-20 | 3 | -4/+125 |
| | |||||
* | #10460: Update indent.pro to match PEP 7 better. | Georg Brandl | 2010-11-20 | 1 | -14/+11 |
| | |||||
* | #10465: fix broken delegation in __getattr__ of _PaddedFile. | Georg Brandl | 2010-11-20 | 3 | -1/+9 |
| | |||||
* | Issue #9920: Skip tests for cmath.atan and cmath.atanh applied to | Mark Dickinson | 2010-11-20 | 3 | -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 and | Mark Dickinson | 2010-11-20 | 2 | -8/+19 |
| | | | | PY_ULLONG_MAX in pyport.h. Thanks Hallvard B Furuseth for the patch. | ||||
* | Regenerated configure and pyconfig.h.in. | Mark Dickinson | 2010-11-20 | 2 | -522/+618 |
| | |||||
* | Fix rst markup errors. | Georg Brandl | 2010-11-20 | 1 | -2/+2 |
| | |||||
* | Use correct markup for True/False/None | Ezio Melotti | 2010-11-20 | 1 | -11/+11 |
| | |||||
* | Add configure-time test for log1p disrespecting zero sign. | Mark Dickinson | 2010-11-20 | 1 | -3/+32 |
| | |||||
* | Add a few labels and links to unittest doc | Ezio Melotti | 2010-11-20 | 1 | -28/+41 |
| | |||||
* | new plan: functions that want 'tmp' can declare it | Benjamin Peterson | 2010-11-20 | 2 | -23/+6 |
| | |||||
* | Fixes a timing-related failure on Windows (issue 10183) | Brian Quinlan | 2010-11-20 | 1 | -3/+3 |
| | |||||
* | Make test class name unique so that both test classes run. | R. David Murray | 2010-11-20 | 1 | -1/+1 |
| | |||||
* | c89 declarations | Benjamin Peterson | 2010-11-20 | 2 | -11/+11 |
| | |||||
* | use %R format code; fixes invalid dereferencing #10391 | Benjamin Peterson | 2010-11-20 | 4 | -58/+43 |
| | |||||
* | Do not put a raw REPLACEMENT CHARACTER in the document. | Georg Brandl | 2010-11-19 | 1 | -1/+4 |
| | |||||
* | remove documentation for something that's gone | Fred Drake | 2010-11-19 | 1 | -4/+0 |
| | |||||
* | Fix test_ssl_presence when ssl is not present | Antoine Pitrou | 2010-11-19 | 1 | -2/+2 |
| | |||||
* | Issue #4153: Updated Unicode HOWTO. | Alexander Belopolsky | 2010-11-19 | 1 | -55/+47 |
| | |||||
* | #10455: fix typo | Ezio Melotti | 2010-11-18 | 1 | -1/+1 |
| | |||||
* | Issue 7828: Fixed chr() and ord() documentation for wide characters | Alexander Belopolsky | 2010-11-18 | 1 | -10/+14 |
| | |||||
* | Wrap all test_nntplib methods accessing a remote server in a ↵ | Antoine Pitrou | 2010-11-18 | 1 | -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 Kumaran | 2010-11-18 | 2 | -23/+10 |
| | |||||
* | Fix usage of :option: in the docs (#9312). | Éric Araujo | 2010-11-18 | 13 | -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 Kumaran | 2010-11-18 | 3 | -8/+18 |
| | | | | Patch by Theodore Turocy | ||||
* | Issue #10356: hash(Decimal("sNaN")) now raises ValueError instead of TypeError. | Stefan Krah | 2010-11-18 | 3 | -2/+5 |
| | |||||
* | Make test_nntplib more robust when the "last" article in a group can't be ↵ | Antoine Pitrou | 2010-11-18 | 1 | -9/+26 |
| | | | | retrieved | ||||
* | Fix Issue 9991: xmlrpc client ssl check faulty | Senthil Kumaran | 2010-11-18 | 2 | -1/+26 |
| | |||||
* | Remove spurious space that was breaking Vim’s reST highlighting. | Éric Araujo | 2010-11-18 | 1 | -1/+1 |
| | |||||
* | reduce try block compass | Benjamin Peterson | 2010-11-18 | 1 | -1/+2 |
| | |||||
* | Issue 10260 | Kristján Valur Jónsson | 2010-11-18 | 3 | -7/+108 |
| | | | | Adding the wait_for() method to threading.Condition | ||||
* | Remove duplicate period from reference doc | Michael Foord | 2010-11-18 | 1 | -1/+1 |
| | |||||
* | Issue #10446 NEWS entry | Alexander Belopolsky | 2010-11-18 | 1 | -0/+3 |
| | |||||
* | Fix a minor inconsistency in capitalization for the 'No module named' exception | Brett Cannon | 2010-11-18 | 2 | -3/+7 |
| | | | | | | message in importlib. Thanks to Éric Araujo for spotting the inconsistency. | ||||
* | Fix #8886. Use context managers throughout the test. | Brian Curtin | 2010-11-18 | 2 | -105/+113 |
| | |||||
* | Issue #10446: Several changes to module documentation generated by pydoc: | Alexander Belopolsky | 2010-11-18 | 4 | -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_ValidateKeywordArguments | Benjamin Peterson | 2010-11-17 | 4 | -6/+14 |
| | |||||
* | Use laxer timeouts in barrier tests | Antoine Pitrou | 2010-11-17 | 1 | -5/+5 |
| | |||||
* | Issue #9518: Extend the PyModuleDef_HEAD_INIT macro to explicitly | David Malcolm | 2010-11-17 | 2 | -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 Pitrou | 2010-11-17 | 4 | -0/+29 |
| | |||||
* | Issue #10440: Support RUSAGE_THREAD as a constant in the resource module. | Antoine Pitrou | 2010-11-17 | 4 | -4/+22 |
| | | | | Patch by Robert Collins. | ||||
* | Issue #10356: Decimal(-1).__hash__() should equal hash(Decimal(-1)). | Stefan Krah | 2010-11-17 | 3 | -15/+25 |
| | |||||
* | Removes an inefficient spin loop in as_completed | Brian Quinlan | 2010-11-17 | 1 | -6/+35 |
| | |||||
* | Fix typo | Ezio Melotti | 2010-11-16 | 1 | -1/+1 |
| | |||||
* | Modules/_io/bufferedio.c (buffered_dealloc_warn): Make it static. | Matthias Klose | 2010-11-16 | 1 | -1/+1 |
| | |||||
* | Provide links to Python source where the code is short, readable and | Éric Araujo | 2010-11-16 | 29 | -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 Pitrou | 2010-11-16 | 3 | -11/+20 |
| | | | | rather than strings. | ||||
* | Avoid some BytesWarnings when running test_imaplib in verbose mode | Antoine Pitrou | 2010-11-16 | 1 | -2/+2 |
| | |||||
* | Post-release bumps. | Georg Brandl | 2010-11-16 | 2 | -1/+13 |
| | |||||
* | Add stub for PEP 3148. | Georg Brandl | 2010-11-16 | 1 | -0/+5 |
| |