Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move out VS9 project files to PC\VS9.0 folder. Fixes #13210 | Brian Curtin | 2012-05-13 | 31 | -15033/+0 |
| | |||||
* | #14770: merge with 3.2. | Ezio Melotti | 2012-05-13 | 1 | -54/+45 |
|\ | |||||
| * | #14770: improve the library FAQ. | Ezio Melotti | 2012-05-13 | 1 | -54/+45 |
| | | |||||
* | | Issue #13959: Document imp.find_module/load_module as deprecated. | Brett Cannon | 2012-05-13 | 2 | -1/+9 |
| | | | | | | | | | | | | | | | | The code itself does not raise a DeprecationWarning as the functions are technically fine, it's just a bad API. Unfortunately experience has shown that the terrible API has been exposed in various places, necessitating that it stick around probably until py4k comes around since it is such a shift to move over to importlib.find_loader(). | ||||
* | | Fix #13210. Port the Windows build from VS2008 to VS2010. | Brian Curtin | 2012-05-13 | 131 | -172/+25718 |
| | | |||||
* | | merge with 3.2 | Sandro Tosi | 2012-05-13 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Issue #14793: fix grammar in bytes object paragraph; patch by Tshepang ↵ | Sandro Tosi | 2012-05-13 | 1 | -1/+2 |
| | | | | | | | | Lekhonkhobe | ||||
* | | Issue #14366: Support lzma compression in zip files. | Martin v. Löwis | 2012-05-13 | 5 | -27/+257 |
| | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | Merge | Antoine Pitrou | 2012-05-12 | 6 | -18/+105 |
|\ \ | |||||
| * | | Issue #13959: Introduce importlib.find_loader(). | Brett Cannon | 2012-05-12 | 5 | -10/+105 |
| | | | | | | | | | | | | | | | | | | The long-term goal is to deprecate imp.find_module() in favour of this API, but it will take some time as some APIs explicitly return/use what imp.find_module() returns. | ||||
| * | | Remove a now worthless test. | Brett Cannon | 2012-05-12 | 1 | -8/+0 |
| | | | |||||
* | | | Merge | Antoine Pitrou | 2012-05-12 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | Try to fix test_shutil failure under Fedora - patch by Hynek. | Antoine Pitrou | 2012-05-12 | 1 | -1/+1 |
| | | | |||||
* | | | Make the reference counting of dictkeys objects participate in refleak hunting | Antoine Pitrou | 2012-05-12 | 1 | -6/+10 |
|/ / | | | | | | | (issue #13903). | ||||
* | | merge with 3.2 | Sandro Tosi | 2012-05-12 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | correctly define what 'fill' could be; thanks to Leland Hulbert from docs@ | Sandro Tosi | 2012-05-12 | 1 | -1/+1 |
| | | |||||
* | | Issue #14779: Do not use get_config_var('SIZEOF_VOID_P') on OS X 64-/32-bit | Stefan Krah | 2012-05-12 | 1 | -3/+3 |
| | | | | | | | | | | universal: it returns a meaningless result. Use sys.maxsize instead of platform.architecture as a fallback. Patch by Ned Deily. | ||||
* | | Merge | Antoine Pitrou | 2012-05-12 | 1 | -4/+10 |
|\ \ | |||||
| * | | Fix refleaks introduced by 83da67651687. | Antoine Pitrou | 2012-05-12 | 1 | -2/+8 |
| | | | |||||
| * | | Fix logic error introduced by 83da67651687. | Antoine Pitrou | 2012-05-12 | 1 | -2/+2 |
| | | | |||||
* | | | Issue #14082: shutil.copy2() now copies extended attributes, if possible. | Antoine Pitrou | 2012-05-12 | 6 | -22/+141 |
|/ / | | | | | | | Patch by Hynek Schlawack. | ||||
* | | Remove uninitialized compiler warning. | Ross Lagerwall | 2012-05-12 | 1 | -1/+5 |
| | | |||||
* | | simplify by shortcutting when the kind of the needle is larger than the haystack | Benjamin Peterson | 2012-05-11 | 1 | -21/+11 |
| | | |||||
* | | Issue #13959: Have | Brett Cannon | 2012-05-11 | 9 | -2366/+2459 |
| | | | | | | | | | | | | | | | | | | | | importlib.abc.FileLoader.load_module()/get_filename() and importlib.machinery.ExtensionFileLoader.load_module() have their single argument be optional as the loader's constructor has all the ncessary information. This allows for the deprecation of imp.load_source()/load_compile()/load_package(). | ||||
* | | Deprecate the imp constants related to imp.get_suffixes(). | Brett Cannon | 2012-05-11 | 1 | -0/+12 |
| | | |||||
* | | Update importlib.h | Brett Cannon | 2012-05-11 | 1 | -2852/+2853 |
| | | |||||
* | | Issue #13959: Deprecate imp.get_suffixes() for new attributes on | Brett Cannon | 2012-05-11 | 17 | -68/+159 |
| | | | | | | | | | | | | | | | | | | | | | | importlib.machinery that provide the suffix details for import. The attributes were not put on imp so as to compartmentalize everything importlib needs for setting up imports in importlib.machinery. This also led to an indirect deprecation of inspect.getmoduleinfo() as it directly returned imp.get_suffix's returned tuple which no longer makes sense. | ||||
* | | Issue #14764: Update importlib.test.benchmark to work in a world where | Brett Cannon | 2012-05-11 | 1 | -0/+14 |
| | | | | | | | | import machinery is no longer implicit. | ||||
* | | merge | Ned Deily | 2012-05-11 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #14662: Prevent shutil failures on OS X when destination does not | Ned Deily | 2012-05-11 | 3 | -2/+37 |
| | | | | | | | | support chflag operations. (Patch by Hynek Schlawack) | ||||
* | | Issue #14662: Prevent shutil failures on OS X when destination does not | Ned Deily | 2012-05-11 | 3 | -2/+36 |
| | | | | | | | | support chflag operations. (Patch by Hynek Schlawack) | ||||
* | | use yield from | Benjamin Peterson | 2012-05-10 | 1 | -6/+3 |
| | | |||||
* | | Issue #14157: Fix time.strptime failing without a year on February 29th. | Antoine Pitrou | 2012-05-10 | 3 | -1/+11 |
|\ \ | |/ | | | | | Patch by Hynek Schlawack. | ||||
| * | Issue #14157: Fix time.strptime failing without a year on February 29th. | Antoine Pitrou | 2012-05-10 | 3 | -1/+11 |
| | | | | | | | | Patch by Hynek Schlawack. | ||||
* | | Issue #14753: Make multiprocessing treat negative timeouts as it did in 3.2 | Richard Oudkerk | 2012-05-10 | 6 | -43/+42 |
| | | | | | | | | | | | | | | | | In Python 3.2 and earlier, Process.join() and Connection.poll() treated negative timeouts as zero timeouts. Earlier versions from the 3.3 line of development treat them as infinite timeouts. The patch reverts to the old behaviour. | ||||
* | | Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy ↵ | Antoine Pitrou | 2012-05-10 | 8 | -552/+316 |
| | | | | | | | | Storchaka. | ||||
* | | Some nits in the pickle docs. | Antoine Pitrou | 2012-05-10 | 1 | -21/+23 |
|\ \ | |/ | |||||
| * | Some nits in the pickle docs. | Antoine Pitrou | 2012-05-10 | 1 | -21/+23 |
| | | |||||
* | | Removed outdated statement about pickle's and marshal's relative performance. | Antoine Pitrou | 2012-05-10 | 1 | -8/+0 |
|\ \ | |/ | |||||
| * | Removed outdated statement about pickle's and marshal's relative performance. | Antoine Pitrou | 2012-05-10 | 1 | -8/+0 |
| | | |||||
* | | #14763: merge with 3.2. | Ezio Melotti | 2012-05-10 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | #14763: document default maxsplit value for str.split. | Ezio Melotti | 2012-05-10 | 1 | -2/+2 |
| | | |||||
* | | MERGE: Closes #14768: os.path.expanduser('~/a') doesn't works correctly when ↵ | Jesus Cea | 2012-05-10 | 4 | -2/+6 |
|\ \ | |/ | | | | | HOME is '/' | ||||
| * | Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME ↵ | Jesus Cea | 2012-05-10 | 4 | -2/+6 |
| | | | | | | | | is '/' | ||||
* | | Rename unicode_write_t structure and its methods to "_PyUnicodeWriter" | Victor Stinner | 2012-05-09 | 2 | -25/+25 |
| | | |||||
* | | Issue #14744: Inline unicode_writer_write_char() and unicode_write_str() | Victor Stinner | 2012-05-09 | 2 | -76/+79 |
| | | | | | | | | | | Optimize also PyUnicode_Format(): call unicode_writer_prepare() only once per argument. | ||||
* | | Null merge for issue #14761. | Antoine Pitrou | 2012-05-09 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #14761: Fix potential leak on an error case in the import machinery. | Antoine Pitrou | 2012-05-09 | 3 | -1/+5 |
| | | |||||
* | | Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c. | Larry Hastings | 2012-05-09 | 1 | -18/+8 |
| | | |||||
* | | Merge: Improve the grammar of a non-sentence. | R David Murray | 2012-05-09 | 1 | -2/+2 |
|\ \ | |/ |