Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add a Misc/NEWS entry for issue 8052. | Gregory P. Smith | 2012-01-21 | 1 | -0/+5 |
| | |||||
* | Fix Issue6631 - Disallow relative file paths in urllib urlopen | Senthil Kumaran | 2012-01-21 | 1 | -0/+2 |
| | |||||
* | Issue #12949: Document the kwonlyargcount argument for the PyCode_New C API ↵ | Meador Inge | 2012-01-20 | 1 | -0/+3 |
| | | | | function. | ||||
* | Issue #2134: Clarify token.OP handling rationale in tokenize documentation. | Meador Inge | 2012-01-19 | 1 | -0/+3 |
| | |||||
* | Issue #13722: Avoid silencing ImportErrors when initializing the codecs ↵ | Antoine Pitrou | 2012-01-18 | 1 | -0/+3 |
| | | | | registry. | ||||
* | Fix the builtin module initialization code to store the init function for ↵ | Antoine Pitrou | 2012-01-18 | 1 | -0/+3 |
| | | | | future reinitialization. | ||||
* | Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects. | Nadeem Vawda | 2012-01-18 | 1 | -0/+3 |
| | |||||
* | Closes #13803: Under Solaris, distutils doesn't include bitness in the ↵ | Jesus Cea | 2012-01-18 | 1 | -0/+3 |
| | | | | directory name | ||||
* | Issue #13589: Fix some serialization primitives in the aifc module. | Antoine Pitrou | 2012-01-17 | 2 | -0/+4 |
| | | | | Patch by Oleg Plakhotnyuk. | ||||
* | Issue #13629: Renumber the tokens in token.h to match the ↵ | Meador Inge | 2012-01-16 | 1 | -0/+3 |
| | | | | _PyParser_TokenNames indexes. | ||||
* | Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. | Meador Inge | 2012-01-14 | 1 | -0/+2 |
| | |||||
* | Issue #13725: Add a NEWS entry. | Meador Inge | 2012-01-14 | 1 | -0/+3 |
| | |||||
* | Issue #13725: regrtest does not recognize -d flag. | Meador Inge | 2012-01-14 | 1 | -0/+1 |
| | | | | Patch by Erno Tukia. | ||||
* | Fix Issue #13642: Unquote before b64encoding user:password during Basic ↵ | Senthil Kumaran | 2012-01-14 | 1 | -0/+3 |
| | | | | Authentication. | ||||
* | Issue13726 - Fix the ambiguous -S flag in regrtest. It is -o/--slow for ↵ | Senthil Kumaran | 2012-01-14 | 1 | -0/+3 |
| | | | | printing the 10 slowest test. | ||||
* | Issue #13764: remove outdated script Misc/build.sh | Antoine Pitrou | 2012-01-13 | 1 | -281/+0 |
| | |||||
* | Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor. | Ross Lagerwall | 2012-01-08 | 1 | -0/+4 |
| | |||||
* | Issue #13502: threading: Fix a race condition in Event.wait() that made it | Charles-François Natali | 2012-01-07 | 1 | -0/+3 |
| | | | | return False when the event was set and cleared right after. | ||||
* | Issue #12926: Fix a bug in tarfile's link extraction. | Lars Gustäbel | 2012-01-05 | 1 | -0/+2 |
| | | | | | | | | On platforms that do not support (symbolic) links, tarfile offers a work-around and extracts a link in an archive as the regular file the link is pointing to. On other platforms, this code was accidentally executed even after the link had been successfully extracted which failed due to the already existing link. | ||||
* | Issue13696 - Fix 302 Redirection for Relative urls. | Senthil Kumaran | 2012-01-04 | 1 | -0/+2 |
| | |||||
* | Issue #13636: Weak ciphers are now disabled by default in the ssl module | Antoine Pitrou | 2012-01-03 | 1 | -0/+3 |
| | | | | (except when SSLv2 is explicitly asked for). | ||||
* | Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by | Charles-François Natali | 2012-01-02 | 2 | -0/+4 |
| | | | | Vilmos Nebehaj. | ||||
* | News entry for Issue12798 | Senthil Kumaran | 2011-12-23 | 1 | -0/+2 |
| | |||||
* | Issue #11006: Don't issue low level warning in subprocess when pipe2() fails. | Ross Lagerwall | 2011-12-22 | 1 | -0/+2 |
| | |||||
* | Metaclasses with metaclasses with a __dict__ descriptor can no longer ↵ | Michael Foord | 2011-12-22 | 1 | -0/+3 |
| | | | | | | trigger code execution with inspect.getattr_static. Closes issue 11829. | ||||
* | Issue #1785: Fix inspect and pydoc with misbehaving descriptors. | Antoine Pitrou | 2011-12-21 | 1 | -0/+2 |
| | | | | Also fixes issue #13581: `help(type)` wouldn't display anything. | ||||
* | Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. | Antoine Pitrou | 2011-12-19 | 1 | -0/+1 |
| | | | | Patch by Philipp Hagemeister. | ||||
* | Issue #13628: python-gdb.py is now able to retrieve more frames in the Python | Victor Stinner | 2011-12-19 | 1 | -1/+7 |
| | | | | | | | | | | | | | traceback if Python is optimized. * delay the lookup of the size_t type, it is not available at startup * The second argument of the PyFrameObjectPtr constructor is optional, as done in other constructors * iter_builtins() and iter_globals() methods of PyFrameObjectPtr returns an empty tuple instead of None if Python is optimized * Fix py-bt and py-bt-full to handle correctly "optimized" frames * Frame.get_pyop() tries to get the frame pointer from PyEval_EvalCodeEx() if the pointer is optimized out in PyEval_EvalFrameEx() | ||||
* | Fix inspect.getattr_static to work on modules (again). | Michael Foord | 2011-12-18 | 1 | -0/+3 |
| | | | | Closes issue 11813. | ||||
* | Merge | Antoine Pitrou | 2011-12-18 | 1 | -0/+3 |
|\ | |||||
| * | Issue #11870: threading: Properly reinitialize threads internal locks and | Charles-François Natali | 2011-12-18 | 1 | -0/+3 |
| | | | | | | | | condition variables to avoid deadlocks in child processes. | ||||
* | | Issue #7502: Fix equality comparison for DocTestCase instances. | Antoine Pitrou | 2011-12-18 | 2 | -0/+4 |
|/ | | | | Patch by Cédric Krier. | ||||
* | Issue #8035: urllib: Fix a bug where the client could remain stuck after a | Charles-François Natali | 2011-12-18 | 1 | -0/+3 |
| | | | | redirection or an error. | ||||
* | Issue #13522: document error return values of some float and complex C API ↵ | Antoine Pitrou | 2011-12-18 | 1 | -0/+1 |
| | | | | functions. | ||||
* | Issue #11231: Fix bytes and bytearray docstrings | Victor Stinner | 2011-12-17 | 1 | -0/+1 |
| | | | | Patch written by Brice Berna. | ||||
* | Issue #13530: Document os.lseek() result | Victor Stinner | 2011-12-17 | 1 | -0/+1 |
| | | | | Patch written by Jérémy Anger. | ||||
* | Issue #10350: Read and save errno before calling a function which might ↵ | Antoine Pitrou | 2011-12-16 | 1 | -0/+3 |
| | | | | | | overwrite it. Original patch by Hallvard B Furuseth. | ||||
* | Fix the fix for issue #12149: it was incorrect, although it had the side | Antoine Pitrou | 2011-12-15 | 1 | -0/+4 |
| | | | | | effect of appearing to resolve the issue. Thanks to Mark Shannon for noticing. | ||||
* | Issue #13591: Moving the NEWS line to the right release. | Meador Inge | 2011-12-15 | 1 | -3/+3 |
| | |||||
* | Issue #13591: import_module potentially imports a module twice. | Meador Inge | 2011-12-15 | 1 | -0/+3 |
| | |||||
* | Issue #4625: add NEWS entry. | Ned Deily | 2011-12-14 | 1 | -0/+4 |
| | |||||
* | Issue #13505: Make pickling of bytes object compatible with Python 2. | Alexandre Vassalotti | 2011-12-13 | 1 | -0/+3 |
| | | | | Initial patch by sbt. | ||||
* | Issue #5905: time.strftime() is now using the locale encoding, instead of | Victor Stinner | 2011-12-09 | 1 | -0/+3 |
| | | | | UTF-8, if the wcsftime() function is not available. | ||||
* | Issue #8641: Update IDLE 3 syntax coloring to recognize b".." and not u"..". | Ned Deily | 2011-12-07 | 2 | -0/+4 |
| | | | | (Patch by Tal Einat) | ||||
* | Correctly detect bzip2 compressed streams with blocksizes other than 900k. | Lars Gustäbel | 2011-12-06 | 1 | -0/+3 |
| | |||||
* | - Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix | Barry Warsaw | 2011-12-05 | 1 | -0/+3 |
| | | | | given by Campbell Barton). | ||||
* | Issue #13513: IOBase docs incorrectly link to the readline module | Meador Inge | 2011-12-03 | 1 | -0/+3 |
| | |||||
* | Issue #13439: Fix many errors in turtle docstrings. | Petri Lehtinen | 2011-12-02 | 1 | -0/+2 |
| | |||||
* | Fix inspect.getmodule to use a copy of sys.modules for iteration (#13487). | Éric Araujo | 2011-11-29 | 2 | -0/+4 |
| | | | | | | This fixes a regression compared to 2.x, where sys.modules.items() returns a copy, as indicated by a comment in the source. Diagnosis and patch by Erik Tollerud. | ||||
* | Fix last remaining references to ex-devguide | Éric Araujo | 2011-11-29 | 1 | -1/+1 |
| |