Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15247: FileIO now raises an error when given a file descriptor ↵ | Antoine Pitrou | 2012-07-06 | 3 | -12/+16 |
|\ | | | | | | | pointing to a directory. | ||||
| * | Issue #15247: FileIO now raises an error when given a file descriptor ↵ | Antoine Pitrou | 2012-07-06 | 3 | -12/+16 |
| | | | | | | | | pointing to a directory. | ||||
* | | Issue 14814: Eliminate bytes warnings from ipaddress by correctly throwing ↵ | Nick Coghlan | 2012-07-06 | 2 | -31/+46 |
| | | | | | | | | an exception early when given bytes data of the wrong length. Also removes 2.x backwards compatibility code from associated tests. | ||||
* | | Issue 14814: Better handling of cases where octet/hextet parsing fails, ↵ | Nick Coghlan | 2012-07-06 | 2 | -39/+48 |
| | | | | | | | | including ensuring that tracebacks are still clean even when calling class constructors directly | ||||
* | | Issue #15261: Stop os.stat(fd) crashing on Windows when fd not open. | Richard Oudkerk | 2012-07-06 | 5 | -6/+37 |
| | | |||||
* | | Issue #15020: The program name used to search for Python's path is now ↵ | Antoine Pitrou | 2012-07-05 | 2 | -0/+7 |
|\ \ | |/ | | | | | python3 under Unix, not python. | ||||
| * | Issue #15020: The program name used to search for Python's path is now ↵ | Antoine Pitrou | 2012-07-05 | 2 | -0/+7 |
| | | | | | | | | "python3" under Unix, not "python". | ||||
* | | Fix issue # 15033 - Return the proper exitcode for failure when modules are ↵ | Senthil Kumaran | 2012-07-05 | 3 | -1/+19 |
|\ \ | |/ | | | | | invoked using -m switch. Patch contributed by Jeff Knupp | ||||
| * | Fix issue # 15033 - Return the proper exitcode for failure when modules are ↵ | Senthil Kumaran | 2012-07-05 | 3 | -1/+19 |
| | | | | | | | | invoked using -m switch. Patch contributed by Jeff Knupp | ||||
* | | Issue #15210: Greatly simplify the test for supporting importlib | Brett Cannon | 2012-07-04 | 2 | -14/+7 |
| | | | | | | | | | | working without _frozen_importlib by moving to an import over a direct access in sys.modules. | ||||
* | | Fix undefined names in __all__. | Mark Dickinson | 2012-07-04 | 1 | -2/+2 |
| | | |||||
* | | Make ANSI the default output style | Raymond Hettinger | 2012-07-04 | 1 | -12/+9 |
| | | |||||
* | | Add examples to the module docstring | Raymond Hettinger | 2012-07-03 | 1 | -5/+21 |
| | | |||||
* | | Fix spelling. | Raymond Hettinger | 2012-07-03 | 1 | -1/+1 |
| | | |||||
* | | Add support for ANSI escape sequences | Raymond Hettinger | 2012-07-03 | 1 | -8/+44 |
| | | |||||
* | | Closes #14902: Fixed timezone conversion of a date/time in the past. Thanks ↵ | Vinay Sajip | 2012-07-03 | 2 | -2/+6 |
| | | | | | | | | to Yuriy Syrovetskiy for the report and Juancarlo Añez for the patch on which this fix is based. | ||||
* | | Refactor to isolate HTML encoding step from the parsing step. | Raymond Hettinger | 2012-07-03 | 1 | -16/+21 |
| | | |||||
* | | Closes #15241: Added information on venv prefixes to pyvenv section. | Vinay Sajip | 2012-07-03 | 1 | -0/+22 |
| | | |||||
* | | Issue #15241: Added test for venv prefixes. | Vinay Sajip | 2012-07-03 | 1 | -0/+25 |
| | | |||||
* | | Issue 15241: Improved site.py documentation relating to venvs. | Vinay Sajip | 2012-07-03 | 2 | -2/+11 |
| | | |||||
* | | NULL MERGE: Issue #1677: Unused variable warning in Non-Windows | Jesus Cea | 2012-07-03 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #1677: Unused variable warning in Non-Windows | Jesus Cea | 2012-07-03 | 1 | -1/+4 |
| | | |||||
* | | Fix keyword argument | Raymond Hettinger | 2012-07-03 | 1 | -1/+1 |
| | | |||||
* | | Minor cleanups | Raymond Hettinger | 2012-07-03 | 2 | -11/+11 |
| | | |||||
* | | Use new-style string formatting for the HTML template | Raymond Hettinger | 2012-07-03 | 1 | -4/+4 |
| | | |||||
* | | Clean-up unused variable | Raymond Hettinger | 2012-07-02 | 1 | -1/+0 |
| | | |||||
* | | Do HTML escaping after the tokenization step. | Raymond Hettinger | 2012-07-02 | 1 | -14/+23 |
| | | |||||
* | | Issue #15166: Re-implement imp.get_tag() using sys.implementation. | Brett Cannon | 2012-07-02 | 5 | -195/+194 |
| | | | | | | | | | | | | | | Also eliminates some C code in Python/import.c as well. Patch by Eric Snow with verification by comparing against another patch from Jeff Knupp. | ||||
* | | Issue #15210: If _frozen_importlib is not found in sys.modules by | Brett Cannon | 2012-07-02 | 3 | -2/+26 |
| | | | | | | | | importlib.__init__, then catch the KeyError raised, not ImportError. | ||||
* | | Closes #15030: Make importlib.abc.PyPycLoader respect the new .pyc | Brett Cannon | 2012-07-02 | 5 | -3/+21 |
| | | | | | | | | | | | | | | file size header field. Thanks to Marc Abramowitz and Ronan Lamy for helping out with various parts of the patch. | ||||
* | | Remove ISSUES.txt. | Stefan Krah | 2012-07-01 | 1 | -56/+0 |
| | | |||||
* | | - Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module. | doko@ubuntu.com | 2012-07-01 | 2 | -1/+3 |
| | | |||||
* | | Fix filename. | Georg Brandl | 2012-07-01 | 1 | -1/+1 |
| | | |||||
* | | Merge with 3.2. | Georg Brandl | 2012-07-01 | 2 | -3/+4 |
|\ \ | |/ | |||||
| * | Make call of os.getppid() conditional: it is not available on Windows. | Georg Brandl | 2012-07-01 | 1 | -1/+2 |
| | | |||||
| * | Fix inconsistent function name in embedding howto. | Georg Brandl | 2012-07-01 | 1 | -2/+2 |
| | | |||||
* | | Limit which operators get colorized | Raymond Hettinger | 2012-07-01 | 1 | -1/+1 |
| | | |||||
* | | Set title to the source filename | Raymond Hettinger | 2012-07-01 | 1 | -5/+6 |
| | | |||||
* | | Small cleanups | Raymond Hettinger | 2012-07-01 | 2 | -4/+13 |
| | | |||||
* | | Fix local variable | Raymond Hettinger | 2012-07-01 | 1 | -1/+1 |
| | | |||||
* | | Add author tag | Raymond Hettinger | 2012-07-01 | 1 | -0/+1 |
| | | |||||
* | | Add syntax highlighter tool | Raymond Hettinger | 2012-06-30 | 1 | -0/+109 |
| | | |||||
* | | - Issue #15194: check in the missing m4/ax_append_flag.m4 file. | doko@ubuntu.com | 2012-06-30 | 3 | -1/+92 |
| | | | | | | | | Regenerate aclocalm4 and configure. | ||||
* | | null merge | doko@ubuntu.com | 2012-06-30 | 3 | -0/+19 |
|\ \ | |||||
| * | | Issue #15229: An OSError subclass whose __init__ doesn't call back | Antoine Pitrou | 2012-06-30 | 3 | -0/+19 |
| | | | | | | | | | | | | | | | OSError.__init__ could produce incomplete instances, leading to crashes when calling str() on them. | ||||
* | | | - Issue #15194: check in the missing m4/ax_check_compile_flag.m4 file. | doko@ubuntu.com | 2012-06-30 | 3 | -167/+1341 |
| | | | | | | | | | | | | Regenerate aclocalm4 and configure. | ||||
* | | | - Issue #14330: Don't derive the include and library search dirs | doko@ubuntu.com | 2012-06-30 | 3 | -157/+160 |
|/ / | | | | | | | from GCC for native builds | ||||
* | | - fix the OS X build failure, only try to remove the temporary file if it exists | doko@ubuntu.com | 2012-06-30 | 1 | -2/+3 |
| | | |||||
* | | Merge | Antoine Pitrou | 2012-06-30 | 15 | -9745/+1855 |
|\ \ | |||||
| * \ | null merge | doko@ubuntu.com | 2012-06-30 | 1 | -4/+4 |
| |\ \ |