summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue 14814: Docs work showed some more cases of networks pretending to be ↵Nick Coghlan2012-08-053-256/+610
| | | | addresses and highlighted the weird approach to implementing the 'is_whatever' properties. Impl now illustrates far more clearly that networks have a property if both their network and broadcast addresses have that property
* NEWS entry for previous ipaddress fixNick Coghlan2012-08-051-0/+4
|
* Close #15559: Implementing __index__ creates a nasty interaction with the ↵Nick Coghlan2012-08-052-14/+9
| | | | bytes constructor. At least for 3.3, ipaddress objects must now be explicitly converted with int() and thus can't be passed directly to the hex() builtin.
* #15546: Fix {GzipFile,LZMAFile}.read1()'s handling of pathological input data.Nadeem Vawda2012-08-053-24/+35
|
* Fix test_venv to work with universal newlines (issue #13119)Antoine Pitrou2012-08-041-3/+3
|
* Merge universal newlines-related fixes (issue #13119)Antoine Pitrou2012-08-042-27/+30
|\
| * Fix universal newlines test to avoid the newline translation done by sys.stdout.Antoine Pitrou2012-08-041-26/+28
| |
| * Fix test_sys under Windows (issue #13119)Antoine Pitrou2012-08-041-1/+2
| |
* | Remove unused variable `trim_get_code`.Antoine Pitrou2012-08-041-4/+0
| |
* | Issue #12655: Mention multiprocessing.cpu_count() in os.sched_getaffinity() docVictor Stinner2012-08-041-0/+4
| |
* | Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ↵Andrew Svetlov2012-08-042-5/+29
|\ \ | |/ | | | | | | | | ended with '\'. Patch by Roger Serwy.
| * Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ↵Andrew Svetlov2012-08-042-5/+29
| | | | | | | | | | | | ended with '\'. Patch by Roger Serwy.
* | merge with 3.2Sandro Tosi2012-08-041-1/+1
|\ \ | |/
| * add missing period; thanks to Gaston Fiore from docs@Sandro Tosi2012-08-041-1/+1
| |
* | MergeAntoine Pitrou2012-08-042-36/+29
|\ \
| * | #15546: Fix BZ2File.read1()'s handling of pathological input data.Nadeem Vawda2012-08-041-23/+28
| | |
| * | asynchat speedup improvement: avoid to use a function mimicking old buffer() ↵Giampaolo Rodola'2012-08-041-13/+1
| | | | | | | | | | | | builtin behavior; instead use plain slicing
* | | Issue #12655: Instead of requiring a custom type, os.sched_getaffinity andAntoine Pitrou2012-08-044-433/+161
|/ / | | | | | | | | os.sched_setaffinity now use regular sets of integers to represent the CPUs a process is restricted to.
* | Null merge (fix already applied to the default branch)Victor Stinner2012-08-030-0/+0
|\ \ | |/
| * Close #13119: use "\r\n" newline for sys.stdout/err on WindowsVictor Stinner2012-08-033-5/+28
| | | | | | | | sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.
* | Close #13119: use "\r\n" newline for sys.stdout/err on WindowsVictor Stinner2012-08-033-5/+28
| | | | | | | | sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.
* | (Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n'Victor Stinner2012-08-034-12/+12
|\ \ | |/ | | | | doesn't translate newlines on output.
| * open() / TextIOWrapper doc: make it explicit than newline='\n' doesn'tVictor Stinner2012-08-034-12/+12
| | | | | | | | translate newlines on output.
* | Make TextIOWrapper's documentation clearer by copying the newline argument's ↵Antoine Pitrou2012-08-032-17/+32
|\ \ | |/ | | | | description from open().
| * Make TextIOWrapper's documentation clearer by copying the newline argument's ↵Antoine Pitrou2012-08-032-17/+32
| | | | | | | | description from open().
* | MERGE: #15512: Remove remnants of debugging codeJesus Cea2012-08-031-2/+0
|\ \ | |/
| * #15512: Remove remnants of debugging codeJesus Cea2012-08-031-2/+0
| |
* | MERGE: Closes #15469: Correct __sizeof__ support for dequeJesus Cea2012-08-033-1/+39
|\ \ | |/
| * Closes #15469: Correct __sizeof__ support for dequeJesus Cea2012-08-033-1/+39
| |
* | MERGE: Closes #15512: Correct __sizeof__ support for parserJesus Cea2012-08-035-1/+85
|\ \ | |/
| * Closes #15512: Correct __sizeof__ support for parserJesus Cea2012-08-035-1/+85
| |
* | Closes #15514: Correct __sizeof__ support for cpu_setJesus Cea2012-08-033-0/+24
| |
* | Update the What's New details for importlib based on doc/ABC changes.Brett Cannon2012-08-022-9/+25
| |
* | Ditch the 'self' argument in importlib docs since it's implied.Brett Cannon2012-08-021-8/+8
| |
* | Close #15534: Fix a typo in the fast search function of the string library ↵Victor Stinner2012-08-023-6/+16
| | | | | | | | | | | | (_s => s) Replace _s with ptr to avoid future confusion. Add also non regression tests.
* | Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation ↵Antoine Pitrou2012-08-023-2/+5
|\ \ | |/ | | | | | | | | code. Patch by Philipp Hagemeister.
| * Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation ↵Antoine Pitrou2012-08-023-2/+5
| | | | | | | | | | | | code. Patch by Philipp Hagemeister.
| * Issue #15321: update PyPI upload doc to say --no-raw passed to rst2html.pyEli Bendersky2012-08-011-1/+5
| |
* | Issue #15502: Bring the importlib.PathFinder docs and docstring more in line ↵Nick Coghlan2012-08-024-1363/+1434
| | | | | | | | with the new import system documentation, and fix various parts of the new docs that weren't quite right given PEP 420 or were otherwise a bit misleading. Also note the key terminology problem still being discussed in the issue
* | Clarify the import statement semantics, especially for implicit imports in ↵Nick Coghlan2012-08-021-29/+74
| | | | | | | | the 'from X import Y' variant
* | Close #15519: Properly expose WindowsRegistryFinder in importlib and bring ↵Nick Coghlan2012-08-027-2497/+2510
| | | | | | | | the name into line with normal import terminology. Original patch by Eric Snow
* | Issue #15502: Bring the importlib ABCs into line with the current state of ↵Nick Coghlan2012-08-025-54/+116
| | | | | | | | the import protocols given PEP 420. Original patch by Eric Snow.
* | Cleanup findnocoding.py and pysource.py scripts (with infile/infile.close)Victor Stinner2012-08-012-5/+4
| |
* | Fix findnocoding.p and pysource.py scriptsVictor Stinner2012-08-012-14/+14
| | | | | | | | I suppose that these scripts didn't work since Python 3.0.
* | Issue #15441: Skip test_nonascii_abspath() of test_genericpath on WindowsVictor Stinner2012-08-011-3/+11
| | | | | | | | if the bytes filenames cannot be encoded from the file system (ANSI) code page
* | Issue #15463: Write a test for faulthandler truncating the name of functionsVictor Stinner2012-08-011-0/+24
| | | | | | | | to 500 characters.
* | Fix the user signal handler of faulthandlerVictor Stinner2012-08-011-3/+2
| | | | | | | | | | Don't exit the tstate is NULL to restore the errno and chain the signal handler if needed.
* | Issue #15525: Increase timeout when TerminateProcess() failsRichard Oudkerk2012-08-011-2/+2
| |
* | Improve wording for __hash__Antoine Pitrou2012-08-011-4/+4
| |
* | Clarify that hash randomization is on by defaultAntoine Pitrou2012-08-011-17/+16
| |