Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15202: Consistently use the name "follow_symlinks" for | Larry Hastings | 2012-07-15 | 1 | -0/+3 |
| | | | | new parameters in os and shutil functions. Patch by Serhiy Storchaka. | ||||
* | #15180: Clarify posixpath.join() error message when mixing str & bytes | Hynek Schlawack | 2012-07-15 | 1 | -0/+2 |
|\ | |||||
| * | #15180: Clarify posixpath.join() error message when mixing str & bytes | Hynek Schlawack | 2012-07-15 | 1 | -0/+2 |
| | | |||||
* | | Issue #15343: Handle importlib.machinery.FileFinder instances in ↵ | Nick Coghlan | 2012-07-15 | 1 | -0/+4 |
| | | | | | | | | pkgutil.walk_packages (et al) | ||||
* | | Take the first step in resolving the messy pkgutil vs importlib edge cases ↵ | Nick Coghlan | 2012-07-15 | 1 | -1/+9 |
| | | | | | | | | by basing pkgutil explicitly on importlib, deprecating its internal import emulation and setting __main__.__loader__ correctly so that runpy still works (Affects #15343, #15314, #15357) | ||||
* | | - Issue #15233: Python now guarantees that callables registered with | Larry Hastings | 2012-07-15 | 1 | -0/+3 |
| | | | | | | | | the atexit module will be called in a deterministic order. | ||||
* | | - Issue #15238: shutil.copystat now copies Linux "extended attributes". | Larry Hastings | 2012-07-15 | 1 | -0/+2 |
| | | |||||
* | | Merge #15230 doc updates from 3.2 | Nick Coghlan | 2012-07-14 | 1 | -1/+4 |
|\ \ | |/ | |||||
| * | Issue #15230: Update runpy docs to clarify a couple of points that came up ↵ | Nick Coghlan | 2012-07-14 | 1 | -0/+3 |
| | | | | | | | | in this issue | ||||
* | | Merge fix for #15230 from 3.2 | Nick Coghlan | 2012-07-14 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | Close #15230: runpy.run_path now sets __package__ correctly. Also refactored ↵ | Nick Coghlan | 2012-07-14 | 1 | -0/+5 |
| | | | | | | | | the runpy tests to use a more systematic approach | ||||
| * | Remove duplicate entry and fix order | Antoine Pitrou | 2012-07-13 | 1 | -2/+1 |
| | | |||||
| * | Issue #15334: skip test_dynamic_key when run in non-interactive mode. | Antoine Pitrou | 2012-07-13 | 1 | -0/+1 |
| | | | | | | | | Patch by Jeremy Kloth. | ||||
* | | Issues #15169, #14599: Make PyImport_ExecCodeModuleWithPathnames() use | Brett Cannon | 2012-07-13 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | Lib/imp.py for imp.source_from_cache() instead of its own C version. Also change PyImport_ExecCodeModuleObject() to not infer the source path from the bytecode path like PyImport_ExecCodeModuleWithPathnames() does. This makes the function less magical. This also has the side-effect of removing all uses of MAXPATHLEN in Python/import.c which can cause failures on really long filenames. | ||||
* | | Issue #15053: Make sure all functions related to the import lock have | Brett Cannon | 2012-07-13 | 1 | -0/+3 |
| | | | | | | | | | | the Python 3.3 change notice on them in case someone directly links to the function(s). | ||||
* | | Issue #15300: Ensure the temporary test working directories are in the same ↵ | Antoine Pitrou | 2012-07-11 | 2 | -0/+5 |
|\ \ | |/ | | | | | | | | | parent folder when running tests in multiprocess mode from a Python build. Patch by Chris Jerdonek. | ||||
| * | Issue #15300: Ensure the temporary test working directories are in the same ↵ | Antoine Pitrou | 2012-07-11 | 2 | -0/+5 |
| | | | | | | | | | | | | parent folder when running tests in multiprocess mode from a Python build. Patch by Chris Jerdonek. | ||||
* | | Issue #15111: When a module was imported using a 'from import' | Brett Cannon | 2012-07-10 | 1 | -0/+4 |
| | | | | | | | | | | | | | | statement (e.g. ``from distutils import msvc9compiler``) that triggers an ImportError of its own (e.g. the non-existence of winreg), let that exception propagate instead of raising a generic ImportError for the module being requested (e.g. msvc9compiler). | ||||
* | | Issue #15315: Support VS 2010 in distutils cygwincompiler. | Martin v. Löwis | 2012-07-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of nested ↵ | Antoine Pitrou | 2012-07-09 | 1 | -0/+3 |
| | | | | | | | | namespace packages. | ||||
* | | Issue #15288: Clarify that pkgutil.walk_packages() and friends will no | Brett Cannon | 2012-07-09 | 1 | -0/+5 |
| | | | | | | | | | | | | | | longer work as expected in Python 3.3 as importlib's loaders do not implement the non-standard iter_modules() method. Also link to the term "loader" in the requisite notes to help make it clearer what has happened. | ||||
* | | Issue #15056: imp.cache_from_source() and source_from_cache() raise | Brett Cannon | 2012-07-09 | 1 | -0/+3 |
| | | | | | | | | | | | | NotimplementedError when sys.implementation.cache_tag is None. Thanks to Pranav Ravichandran for taking an initial stab at the patch. | ||||
* | | Issue #15256: Re-use the ImportError exception message as defined by | Brett Cannon | 2012-07-09 | 1 | -0/+2 |
| | | | | | | | | | | | | importlib._bootstrap in imp to fix a grammatical mistake. Thanks to Marc Abramowitz for the patch. | ||||
* | | revert the changes done for issue14826 - quoting witin Request is not desirable. | Senthil Kumaran | 2012-07-09 | 1 | -5/+0 |
|\ \ | |/ | |||||
| * | revert the changes done for issue14826 - quoting witin Request is not desirable. | Senthil Kumaran | 2012-07-09 | 1 | -5/+0 |
| | | |||||
* | | Merge 3.2 closes issue 13557 | Terry Jan Reedy | 2012-07-08 | 1 | -0/+6 |
|\ \ | |/ | |||||
| * | Issue #13557: Clarify effect of giving two different namespaces to exec or | Terry Jan Reedy | 2012-07-08 | 1 | -3/+3 |
| | | | | | | | | execfile(). | ||||
* | | add news note for 85cccc38d01c | Benjamin Peterson | 2012-07-08 | 1 | -0/+2 |
| | | |||||
* | | Issue #15291: Fix a memory leak where AST nodes where not properly deallocated. | Antoine Pitrou | 2012-07-08 | 1 | -0/+3 |
| | | |||||
* | | Issue #15110: Fix the tracebacks generated by "import xxx" to not show the ↵ | Antoine Pitrou | 2012-07-08 | 1 | -0/+3 |
| | | | | | | | | importlib stack frames. | ||||
* | | issue 14826 - Address the buildbot failure quote of url is the required ↵ | Senthil Kumaran | 2012-07-08 | 1 | -2/+2 |
|\ \ | |/ | | | | | change ( explanation msg164973) | ||||
| * | issue 14826 - Address the buildbot failure ( explanation msg164973) | Senthil Kumaran | 2012-07-08 | 1 | -2/+2 |
| | | |||||
* | | #15284: Skip {send,recv}msg tests with disabled IPv6 | Ross Lagerwall | 2012-07-08 | 1 | -0/+3 |
| | | | | | | | | Patch by Brian Brazil. | ||||
* | | Fix issue14826 - make urllib.request.Request quoted url consistent with ↵ | Senthil Kumaran | 2012-07-08 | 1 | -0/+5 |
|\ \ | |/ | | | | | | | | | URLOpener open method. Patch contributed by Stephen Thorne. | ||||
| * | Fix issue14826 - make urllib.request.Request quoted url consistent with ↵ | Senthil Kumaran | 2012-07-08 | 1 | -0/+5 |
| | | | | | | | | | | | | URLOpener open method. Patch contributed by Stephen Thorne. | ||||
* | | Fix 5931 - Python runtime hardcoded in wsgiref.simple_server - Now it ↵ | Senthil Kumaran | 2012-07-07 | 1 | -0/+3 |
| | | | | | | | | specifies an implementation specific term. | ||||
* | | Merge with remote. | Ross Lagerwall | 2012-07-07 | 1 | -0/+6 |
|\ \ | |||||
| * | | #15277: Fix a resource leak in support.py when IPv6 is disabled. | Ross Lagerwall | 2012-07-07 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | The leak occurred by setting: echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6 before running test_support. Patch by Brian Brazil. | ||||
* | | | Issue #13248: io: Remove obsolete argument "max_buffer_size" of ↵ | Florent Xicluna | 2012-07-07 | 1 | -0/+3 |
| | | | | | | | | | | | | BufferedWriter and BufferedRWPair. | ||||
* | | | Issue #13248: argparse: Remove obsolete argument "version" of ArgumentParser. | Florent Xicluna | 2012-07-07 | 1 | -0/+2 |
| | | | |||||
* | | | Issue 14814: Ensure ordering semantics across all 3 entity types in ↵ | Nick Coghlan | 2012-07-07 | 1 | -0/+3 |
|/ / | | | | | | | ipaddress are consistent and well-defined | ||||
* | | Issue 14814: Correctly return NotImplemented from ipaddress._BaseNetwork.__eq__ | Nick Coghlan | 2012-07-07 | 1 | -0/+3 |
| | | |||||
* | | Merge branch | Florent Xicluna | 2012-07-07 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #14990: tokenize: correctly fail with SyntaxError on invalid encoding ↵ | Florent Xicluna | 2012-07-07 | 1 | -0/+3 |
| | | | | | | | | declaration. | ||||
* | | Issue 14814: Provide more informative error messages in ipaddress, and ↵ | Nick Coghlan | 2012-07-07 | 1 | -0/+4 |
| | | | | | | | | ensure that errors are caught as expected | ||||
* | | - Issue #15268: Search curses.h in /usr/include/ncursesw. | doko@ubuntu.com | 2012-07-07 | 1 | -0/+2 |
| | | |||||
* | | Issue #15247: FileIO now raises an error when given a file descriptor ↵ | Antoine Pitrou | 2012-07-06 | 1 | -0/+3 |
|\ \ | |/ | | | | | pointing to a directory. | ||||
| * | Issue #15247: FileIO now raises an error when given a file descriptor ↵ | Antoine Pitrou | 2012-07-06 | 1 | -0/+3 |
| | | | | | | | | pointing to a directory. | ||||
* | | Issue #15261: Stop os.stat(fd) crashing on Windows when fd not open. | Richard Oudkerk | 2012-07-06 | 1 | -0/+2 |
| | | |||||
* | | Issue #15020: The program name used to search for Python's path is now ↵ | Antoine Pitrou | 2012-07-05 | 1 | -0/+3 |
|\ \ | |/ | | | | | python3 under Unix, not python. |