summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* News entry for Issue12798Senthil Kumaran2011-12-231-0/+2
|
* Issue #11006: Don't issue low level warning in subprocess when pipe2() fails.Ross Lagerwall2011-12-221-0/+2
|
* Metaclasses with metaclasses with a __dict__ descriptor can no longer ↵Michael Foord2011-12-221-0/+3
| | | | | | trigger code execution with inspect.getattr_static. Closes issue 11829.
* Issue #1785: Fix inspect and pydoc with misbehaving descriptors.Antoine Pitrou2011-12-211-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 Pitrou2011-12-191-0/+1
| | | | Patch by Philipp Hagemeister.
* Issue #13628: python-gdb.py is now able to retrieve more frames in the PythonVictor Stinner2011-12-191-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 Foord2011-12-181-0/+3
| | | | Closes issue 11813.
* MergeAntoine Pitrou2011-12-181-0/+3
|\
| * Issue #11870: threading: Properly reinitialize threads internal locks andCharles-François Natali2011-12-181-0/+3
| | | | | | | | condition variables to avoid deadlocks in child processes.
* | Issue #7502: Fix equality comparison for DocTestCase instances.Antoine Pitrou2011-12-182-0/+4
|/ | | | Patch by Cédric Krier.
* Issue #8035: urllib: Fix a bug where the client could remain stuck after aCharles-François Natali2011-12-181-0/+3
| | | | redirection or an error.
* Issue #13522: document error return values of some float and complex C API ↵Antoine Pitrou2011-12-181-0/+1
| | | | functions.
* Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-171-0/+1
| | | | Patch written by Brice Berna.
* Issue #13530: Document os.lseek() resultVictor Stinner2011-12-171-0/+1
| | | | Patch written by Jérémy Anger.
* Issue #10350: Read and save errno before calling a function which might ↵Antoine Pitrou2011-12-161-0/+3
| | | | | | overwrite it. Original patch by Hallvard B Furuseth.
* Fix the fix for issue #12149: it was incorrect, although it had the sideAntoine Pitrou2011-12-151-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 Inge2011-12-151-3/+3
|
* Issue #13591: import_module potentially imports a module twice.Meador Inge2011-12-151-0/+3
|
* Issue #4625: add NEWS entry.Ned Deily2011-12-141-0/+4
|
* Issue #13505: Make pickling of bytes object compatible with Python 2.Alexandre Vassalotti2011-12-131-0/+3
| | | | Initial patch by sbt.
* Issue #5905: time.strftime() is now using the locale encoding, instead ofVictor Stinner2011-12-091-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 Deily2011-12-072-0/+4
| | | | (Patch by Tal Einat)
* Correctly detect bzip2 compressed streams with blocksizes other than 900k.Lars Gustäbel2011-12-061-0/+3
|
* - Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (FixBarry Warsaw2011-12-051-0/+3
| | | | given by Campbell Barton).
* Issue #13513: IOBase docs incorrectly link to the readline moduleMeador Inge2011-12-031-0/+3
|
* Issue #13439: Fix many errors in turtle docstrings.Petri Lehtinen2011-12-021-0/+2
|
* Fix inspect.getmodule to use a copy of sys.modules for iteration (#13487).Éric Araujo2011-11-292-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 Araujo2011-11-291-1/+1
|
* Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-281-0/+4
| | | | | It was already the case with Python 2. However, the corresponding sys module entries are now set to None (instead of an unusable file object).
* Issue #12618: py_compile cannot create files in current directoryMeador Inge2011-11-282-0/+4
| | | | Initial patch by Sjoerd de Vries.
* Issue #13444: When stdout has been closed explicitly, we should not attempt ↵Antoine Pitrou2011-11-261-0/+3
| | | | | | to flush it at shutdown and print an error. This also adds a test for issue #5319, whose resolution introduced the issue.
* Issue #12856: Ensure child processes do not inherit the parent's random seed ↵Antoine Pitrou2011-11-251-0/+4
| | | | | | for filename generation in the tempfile module. Patch by Brian Harring.
* Issue #13458: Fix a memory leak in the ssl module when decoding a ↵Antoine Pitrou2011-11-231-0/+3
| | | | | | certificate with a subjectAltName. Patch by Robert Xiao.
* Merge branch 3.2Victor Stinner2011-11-221-0/+2
|\
| * Issue #13415: os.unsetenv() doesn't ignore errors anymore.Victor Stinner2011-11-221-0/+2
| |
* | Issue #13436: Fix a bogus error message when an AST object was passedAmaury Forgeot d'Arc2011-11-221-0/+3
|/ | | | an invalid integer value.
* Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError isAntoine Pitrou2011-11-212-0/+7
| | | | | | | raised when the wrapped raw file is non-blocking and the write would block. Previous code assumed that the raw write() would raise BlockingIOError, but RawIOBase.write() is defined to returned None when the call would block. Patch by sbt.
* Issue #13338: Handle all enumerations in _Py_ANNOTATE_MEMORY_ORDERPetri Lehtinen2011-11-192-0/+5
| | | | | This allows compiling extension modules with -Wswitch-enum on gcc. Initial patch by Floris Bruynooghe.
* #13358: HTMLParser now calls handle_data only once for each CDATA.Ezio Melotti2011-11-181-0/+2
|
* #4147: minidom's toprettyxml no longer adds whitespace around a text node ↵Ezio Melotti2011-11-181-0/+4
| | | | when it is the only child of an element. Initial patch by Dan Kenigsberg.
* Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-0/+3
| | | | (the encoder already accepts them).
* #1745761, #755670, #13357, #12629, #1200313: improve attribute handling in ↵Ezio Melotti2011-11-141-0/+3
| | | | HTMLParser.
* Add NEWS entry for #13193Antoine Pitrou2011-11-121-0/+3
|
* Remove duplicate ACKS.Florent Xicluna2011-11-111-2/+0
|
* Fix #13384. Remove __future__ import in 3.x code.Brian Curtin2011-11-111-0/+2
|
* Issue #13191: typo in argparse docsEli Bendersky2011-11-111-0/+1
|
* Issue #13365: correct an error in the documentation of str.expandtabsEli Bendersky2011-11-111-0/+1
|
* Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitelyAntoine Pitrou2011-11-092-0/+4
| | | | when called with a timeout. Patch by Arnaud Ysmal.
* Partial patch for issue #11812: Take care of test_telnetlib.pyJesus Cea2011-11-081-0/+3
|
* Solved a potential deadlock in test_telnetlib.py. Related to issue #11812Jesus Cea2011-11-081-0/+2
|