Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | What's New in Python 3.3: Split improved and new modules, start to write a ↵ | Victor Stinner | 2012-08-05 | 1 | -45/+60 | |
| | | | | | | | | | | | | summary | |||||
* | | | Complete What's New in Python 3.3. | Victor Stinner | 2012-08-05 | 1 | -18/+81 | |
| | | | ||||||
* | | | Issue #15548: Update and complete What's New in Python 3.3, especially the ↵ | Victor Stinner | 2012-08-05 | 1 | -73/+82 | |
| | | | | | | | | | | | | "os" section | |||||
* | | | os.unlinkat() has been removed, update os.fwalk() doc | Victor Stinner | 2012-08-05 | 1 | -3/+3 | |
| | | | ||||||
* | | | Merge | Antoine Pitrou | 2012-08-05 | 5 | -17/+13 | |
|\ \ \ | ||||||
| * | | | Issue #14814: Attempt to clarify network address and broadcast address for ↵ | Nick Coghlan | 2012-08-05 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | | less experienced users | |||||
| * | | | #15546: Also fix GzipFile.peek(). | Nadeem Vawda | 2012-08-05 | 2 | -4/+6 | |
| | | | | ||||||
| * | | | Issue #14814: Remove redundant property from interface objects - prefixlen ↵ | Nick Coghlan | 2012-08-05 | 2 | -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 Pitrou | 2012-08-05 | 1 | -5/+7 | |
|\ \ \ \ | |/ / / |/| / / | |/ / | ||||||
| * | | Fix CGI tests to take into account the platform's line ending (issue #13119) | Antoine Pitrou | 2012-08-05 | 1 | -5/+7 | |
| | | | ||||||
* | | | Issue #14814: Finish review of ipaddress network object docs (initial patch ↵ | Nick Coghlan | 2012-08-05 | 1 | -78/+135 | |
| | | | | | | | | | | | | was by Eli Bendersky) | |||||
* | | | Issue 14814: Docs work showed some more cases of networks pretending to be ↵ | Nick Coghlan | 2012-08-05 | 3 | -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 fix | Nick Coghlan | 2012-08-05 | 1 | -0/+4 | |
| | | | ||||||
* | | | Close #15559: Implementing __index__ creates a nasty interaction with the ↵ | Nick Coghlan | 2012-08-05 | 2 | -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 Vawda | 2012-08-05 | 3 | -24/+35 | |
| | | ||||||
* | | Fix test_venv to work with universal newlines (issue #13119) | Antoine Pitrou | 2012-08-04 | 1 | -3/+3 | |
| | | ||||||
* | | Merge universal newlines-related fixes (issue #13119) | Antoine Pitrou | 2012-08-04 | 2 | -27/+30 | |
|\ \ | |/ | ||||||
| * | Fix universal newlines test to avoid the newline translation done by sys.stdout. | Antoine Pitrou | 2012-08-04 | 1 | -26/+28 | |
| | | ||||||
| * | Fix test_sys under Windows (issue #13119) | Antoine Pitrou | 2012-08-04 | 1 | -1/+2 | |
| | | ||||||
* | | Remove unused variable `trim_get_code`. | Antoine Pitrou | 2012-08-04 | 1 | -4/+0 | |
| | | ||||||
* | | Issue #12655: Mention multiprocessing.cpu_count() in os.sched_getaffinity() doc | Victor Stinner | 2012-08-04 | 1 | -0/+4 | |
| | | ||||||
* | | Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ↵ | Andrew Svetlov | 2012-08-04 | 2 | -5/+29 | |
|\ \ | |/ | | | | | | | | | ended with '\'. Patch by Roger Serwy. | |||||
| * | Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ↵ | Andrew Svetlov | 2012-08-04 | 2 | -5/+29 | |
| | | | | | | | | | | | | ended with '\'. Patch by Roger Serwy. | |||||
* | | merge with 3.2 | Sandro Tosi | 2012-08-04 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | add missing period; thanks to Gaston Fiore from docs@ | Sandro Tosi | 2012-08-04 | 1 | -1/+1 | |
| | | ||||||
* | | Merge | Antoine Pitrou | 2012-08-04 | 2 | -36/+29 | |
|\ \ | ||||||
| * | | #15546: Fix BZ2File.read1()'s handling of pathological input data. | Nadeem Vawda | 2012-08-04 | 1 | -23/+28 | |
| | | | ||||||
| * | | asynchat speedup improvement: avoid to use a function mimicking old buffer() ↵ | Giampaolo Rodola' | 2012-08-04 | 1 | -13/+1 | |
| | | | | | | | | | | | | builtin behavior; instead use plain slicing | |||||
* | | | Issue #12655: Instead of requiring a custom type, os.sched_getaffinity and | Antoine Pitrou | 2012-08-04 | 4 | -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 Stinner | 2012-08-03 | 0 | -0/+0 | |
|\ \ | |/ | ||||||
| * | Close #13119: use "\r\n" newline for sys.stdout/err on Windows | Victor Stinner | 2012-08-03 | 3 | -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 Windows | Victor Stinner | 2012-08-03 | 3 | -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 Stinner | 2012-08-03 | 4 | -12/+12 | |
|\ \ | |/ | | | | | doesn't translate newlines on output. | |||||
| * | open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't | Victor Stinner | 2012-08-03 | 4 | -12/+12 | |
| | | | | | | | | translate newlines on output. | |||||
* | | Make TextIOWrapper's documentation clearer by copying the newline argument's ↵ | Antoine Pitrou | 2012-08-03 | 2 | -17/+32 | |
|\ \ | |/ | | | | | description from open(). | |||||
| * | Make TextIOWrapper's documentation clearer by copying the newline argument's ↵ | Antoine Pitrou | 2012-08-03 | 2 | -17/+32 | |
| | | | | | | | | description from open(). | |||||
* | | MERGE: #15512: Remove remnants of debugging code | Jesus Cea | 2012-08-03 | 1 | -2/+0 | |
|\ \ | |/ | ||||||
| * | #15512: Remove remnants of debugging code | Jesus Cea | 2012-08-03 | 1 | -2/+0 | |
| | | ||||||
* | | MERGE: Closes #15469: Correct __sizeof__ support for deque | Jesus Cea | 2012-08-03 | 3 | -1/+39 | |
|\ \ | |/ | ||||||
| * | Closes #15469: Correct __sizeof__ support for deque | Jesus Cea | 2012-08-03 | 3 | -1/+39 | |
| | | ||||||
* | | MERGE: Closes #15512: Correct __sizeof__ support for parser | Jesus Cea | 2012-08-03 | 5 | -1/+85 | |
|\ \ | |/ | ||||||
| * | Closes #15512: Correct __sizeof__ support for parser | Jesus Cea | 2012-08-03 | 5 | -1/+85 | |
| | | ||||||
* | | Closes #15514: Correct __sizeof__ support for cpu_set | Jesus Cea | 2012-08-03 | 3 | -0/+24 | |
| | | ||||||
* | | Update the What's New details for importlib based on doc/ABC changes. | Brett Cannon | 2012-08-02 | 2 | -9/+25 | |
| | | ||||||
* | | Ditch the 'self' argument in importlib docs since it's implied. | Brett Cannon | 2012-08-02 | 1 | -8/+8 | |
| | | ||||||
* | | Close #15534: Fix a typo in the fast search function of the string library ↵ | Victor Stinner | 2012-08-02 | 3 | -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 Pitrou | 2012-08-02 | 3 | -2/+5 | |
|\ \ | |/ | | | | | | | | | code. Patch by Philipp Hagemeister. | |||||
| * | Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation ↵ | Antoine Pitrou | 2012-08-02 | 3 | -2/+5 | |
| | | | | | | | | | | | | code. Patch by Philipp Hagemeister. | |||||
| * | Issue #15321: update PyPI upload doc to say --no-raw passed to rst2html.py | Eli Bendersky | 2012-08-01 | 1 | -1/+5 | |
| | | ||||||
* | | Issue #15502: Bring the importlib.PathFinder docs and docstring more in line ↵ | Nick Coghlan | 2012-08-02 | 4 | -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 |