Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | Merge from 3.3 | Nick Coghlan | 2012-11-05 | 1 | -16/+0 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | The migration to importlib eliminated this crasher | Nick Coghlan | 2012-11-05 | 1 | -16/+0 | |
| | | | | | | | | | | | | | | | | | | | | If anyone finds another recursive C path that bypasses the recursion limiting, they can add a new crasher example. | |||||
* | | | | Issue #15641: Clean up deprecated classes from importlib | Andrew Svetlov | 2012-11-05 | 5 | -834/+7 | |
| | | | | | | | | | | | | | | | | Patch by Taras Lyapun. | |||||
* | | | | Revome extra .py suffix | Andrew Svetlov | 2012-11-05 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Issue #16218: Fix test for issue again | Andrew Svetlov | 2012-11-05 | 1 | -18/+19 | |
| | | | | ||||||
* | | | | (Merge 3.3) Close #15165: Fix test_email on Windows 64 bits | Victor Stinner | 2012-11-05 | 1 | -4/+4 | |
|\ \ \ \ | |/ / / | | | | | | | | | Use year 1990 instead of year 1970 to avoid issues with negative timestamps. | |||||
| * | | | Close #15165: Fix test_email on Windows 64 bits | Victor Stinner | 2012-11-05 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | Use year 1990 instead of year 1970 to avoid issues with negative timestamps. | |||||
* | | | | Issue #15478: Fix test_pep277 on Windows | Victor Stinner | 2012-11-05 | 1 | -4/+0 | |
| | | | | | | | | | | | | | | | | | | | | os.listdir() now returns the original path in OSError.filename (on any platform), even if "*.*" was added to the path (on Windows). | |||||
* | | | | Issue #15478: Oops, fix regression in os.open() on Windows | Victor Stinner | 2012-11-05 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | os.open() uses _wopen() which sets errno, not the Windows error code. | |||||
* | | | | Issue #16350: Fix zlib decompressor handling of unused_data with multiple ↵ | Nadeem Vawda | 2012-11-04 | 3 | -6/+41 | |
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | calls to decompress() after EOF. Patch by Serhiy Storchaka. | |||||
| * | | | Issue #16350: Fix zlib decompressor handling of unused_data with multiple ↵ | Nadeem Vawda | 2012-11-04 | 3 | -6/+41 | |
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | calls to decompress() after EOF. Patch by Serhiy Storchaka. | |||||
| | * | | Issue #16350: Fix zlib decompressor handling of unused_data with multiple ↵ | Nadeem Vawda | 2012-11-04 | 3 | -6/+40 | |
| | |/ | | | | | | | | | | | | | | | | calls to decompress() after EOF. Patch by Serhiy Storchaka. | |||||
* | | | (Merge 3.3) Issue #8271: Fix compilation on Windows | Victor Stinner | 2012-11-04 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #8271: Fix compilation on Windows | Victor Stinner | 2012-11-04 | 1 | -1/+1 | |
| | | | ||||||
* | | | #5057: null merge with 3.3 (only add tests). | Ezio Melotti | 2012-11-04 | 1 | -0/+3 | |
|\ \ \ | |/ / | ||||||
| * | | #5057: null merge with 3.2 (only add tests). | Ezio Melotti | 2012-11-04 | 1 | -0/+3 | |
| |\ \ | | |/ | ||||||
| | * | #5057: the peepholer no longer optimizes subscription on unicode literals ↵ | Ezio Melotti | 2012-11-04 | 3 | -24/+18 | |
| | | | | | | | | | | | | (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds. | |||||
* | | | #8271: merge with 3.3. | Ezio Melotti | 2012-11-04 | 4 | -37/+291 | |
|\ \ \ | |/ / | ||||||
| * | | #8271: the utf-8 decoder now outputs the correct number of U+FFFD ↵ | Ezio Melotti | 2012-11-04 | 4 | -38/+292 | |
| | | | | | | | | | | | | characters when used with the "replace" error handler on invalid utf-8 sequences. Patch by Serhiy Storchaka, tests by Ezio Melotti. | |||||
* | | | Fix copy&paste errors and reformulate the tests. | Stefan Krah | 2012-11-04 | 1 | -14/+4 | |
| | | | ||||||
* | | | Merge from 3.3 | Nick Coghlan | 2012-11-04 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Properly credit patch | Nick Coghlan | 2012-11-04 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #5765: Merge from 3.3 | Nick Coghlan | 2012-11-04 | 1 | -0/+7 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #5765: Also check the compiler when finding the recursion limit | Nick Coghlan | 2012-11-04 | 1 | -0/+7 | |
| | | | ||||||
* | | | Issue #5765: Merge from 3.3 | Nick Coghlan | 2012-11-04 | 7 | -44/+108 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #5765: Apply a hard recursion limit in the compiler | Nick Coghlan | 2012-11-04 | 7 | -42/+106 | |
| | | | | | | | | | | | | | | | | | | | | | Previously, excessive nesting in expressions would blow the stack and segfault the interpreter. Now, a hard limit based on the configured recursion limit and a hardcoded scaling factor is applied. | |||||
* | | | Issue #16402: Merge fix from 3.3 | Mark Dickinson | 2012-11-04 | 3 | -5/+17 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #16402: Merge fix from 3.2 | Mark Dickinson | 2012-11-04 | 3 | -5/+17 | |
| |\ \ | | |/ | ||||||
| | * | Issue #16402: In range slicing, fix shadowing of exceptions from __index__ ↵ | Mark Dickinson | 2012-11-04 | 3 | -5/+17 | |
| | | | | | | | | | | | | method. | |||||
* | | | #16304: merge with 3.3. | Ezio Melotti | 2012-11-04 | 1 | -3/+10 | |
|\ \ \ | |/ / | ||||||
| * | | #16304: merge with 3.2. | Ezio Melotti | 2012-11-04 | 1 | -3/+10 | |
| |\ \ | | |/ | ||||||
| | * | #16304: clarify match objects docs. Initial patch by Jan Duzinkiewicz. | Ezio Melotti | 2012-11-04 | 1 | -3/+10 | |
| | | | ||||||
* | | | Issue #15837: add some tests for random.shuffle(). | Antoine Pitrou | 2012-11-04 | 2 | -3/+37 | |
| | | | | | | | | | | | | Patch by Alessandro Moura. | |||||
* | | | Fix compilation on Windows | Christian Heimes | 2012-11-03 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Fix compilation on Windows | Christian Heimes | 2012-11-03 | 1 | -1/+1 | |
| |\ \ | | |/ | ||||||
| | * | Fix compilation on Windows | Christian Heimes | 2012-11-03 | 1 | -1/+1 | |
| | | | ||||||
* | | | Merge 3.3 | Éric Araujo | 2012-11-03 | 1 | -2/+3 | |
|\ \ \ | |/ / | ||||||
| * | | Avoid fd leak in example. Caught by Serhiy. | Éric Araujo | 2012-11-03 | 1 | -2/+3 | |
| | | | ||||||
* | | | Branch merge | Éric Araujo | 2012-11-03 | 0 | -0/+0 | |
|\ \ \ | |/ / | ||||||
| * | | Branch merge | Éric Araujo | 2012-11-03 | 3 | -4/+9 | |
| |\ \ | ||||||
* | \ \ | Branch merge | Éric Araujo | 2012-11-03 | 3 | -4/+9 | |
|\ \ \ \ | ||||||
| * \ \ \ | #16336: merge with 3.3. | Ezio Melotti | 2012-11-03 | 3 | -4/+9 | |
| |\ \ \ \ | | | |/ / | | |/| | | ||||||
| | * | | | #16336: merge with 3.2. | Ezio Melotti | 2012-11-03 | 3 | -4/+9 | |
| | |\ \ \ | | | | |/ | | | |/| | ||||||
| | | * | | #16336: fix input checking in the surrogatepass error handler. Patch by ↵ | Ezio Melotti | 2012-11-03 | 3 | -4/+9 | |
| | | | | | | | | | | | | | | | | | | | | Serhiy Storchaka. | |||||
* | | | | | Merge 3.3 | Éric Araujo | 2012-11-03 | 3 | -0/+34 | |
|\ \ \ \ \ | |/ / / / |/| | | / | | |_|/ | |/| | | ||||||
| * | | | Add examples for opener argument of open (#13424). | Éric Araujo | 2012-11-03 | 3 | -0/+34 | |
| |/ / | | | | | | | | | | Patch by Guillaume Pratte. | |||||
* | | | Merge typo fixes (and the fix for #8401 that I wrongly merged) with 3.3. | Ezio Melotti | 2012-11-03 | 1 | -3/+3 | |
|\ \ \ | |/ / | ||||||
| * | | Merge typo fixes with 3.2. | Ezio Melotti | 2012-11-03 | 1 | -3/+3 | |
| |\ \ | | |/ | ||||||
| | * | Fix a couple typos in Misc/NEWS. | Ezio Melotti | 2012-11-03 | 1 | -2/+2 | |
| | | | ||||||
| * | | #8401: merge with 3.2. | Ezio Melotti | 2012-11-03 | 3 | -0/+27 | |
| |\ \ | | |/ |