summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | What's New in Python 3.3: Split improved and new modules, start to write a ↵Victor Stinner2012-08-051-45/+60
| | | | | | | | | | | | summary
* | | Complete What's New in Python 3.3.Victor Stinner2012-08-051-18/+81
| | |
* | | Issue #15548: Update and complete What's New in Python 3.3, especially the ↵Victor Stinner2012-08-051-73/+82
| | | | | | | | | | | | "os" section
* | | os.unlinkat() has been removed, update os.fwalk() docVictor Stinner2012-08-051-3/+3
| | |
* | | MergeAntoine Pitrou2012-08-055-17/+13
|\ \ \
| * | | Issue #14814: Attempt to clarify network address and broadcast address for ↵Nick Coghlan2012-08-051-2/+4
| | | | | | | | | | | | | | | | less experienced users
| * | | #15546: Also fix GzipFile.peek().Nadeem Vawda2012-08-052-4/+6
| | | |
| * | | Issue #14814: Remove redundant property from interface objects - prefixlen ↵Nick Coghlan2012-08-052-11/+3
| | | | | | | | | | | | | | | | can be accessed via the associated network object
* | | | Fix CGI tests to take into account the platform's line ending (issue #13119)Antoine Pitrou2012-08-051-5/+7
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Fix CGI tests to take into account the platform's line ending (issue #13119)Antoine Pitrou2012-08-051-5/+7
| | |
* | | Issue #14814: Finish review of ipaddress network object docs (initial patch ↵Nick Coghlan2012-08-051-78/+135
| | | | | | | | | | | | was by Eli Bendersky)
* | | 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