summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* issue #9452:Fred Drake2010-08-091-0/+3
| | | | | Add read_file, read_string, and read_dict to the configparser API; new source attribute to exceptions.
* Fix ``Tools/scripts/checkpyc.py`` after PEP 3147.Florent Xicluna2010-08-091-0/+2
|
* Revert r83877 in order to fix compilationAntoine Pitrou2010-08-091-2/+2
|
* reapply the revert made in r83875Senthil Kumaran2010-08-091-2/+2
| | | | | | | | | Now the _collections is statically built, the build dependencies are in proper order and build works fine. Commit Log from r83874: Issue 9396. Apply functools.lru_cache in the place of the random flushing cache in the re module.
* Revert 83784 adding functools.lru_cache() to the re module.Raymond Hettinger2010-08-091-2/+2
| | | | | | | | | | | The problem is that the re module is imported by sysconfig and re needs functools which uses collections.OrderedDict() but the _collectionsmodule.c code is not yet constructed at this point in the build. The likely best solution will be to include _collections as part of the static build before the rest of the boot-strapping.
* Issue 9396. Apply functools.lru_cache in the place of theRaymond Hettinger2010-08-091-2/+2
| | | | random flushing cache in the re module.
* Issue #8524: Add a forget() method to socket objects, so as to put theAntoine Pitrou2010-08-081-0/+4
| | | | | socket into the closed state without closing the underlying file descriptor.
* Fix xml.etree.ElementInclude to include the tail of the current node. Issue ↵Florent Xicluna2010-08-081-0/+3
| | | | #6231
* Issue #477863: Print a warning at shutdown if gc.garbage is not empty.Antoine Pitrou2010-08-081-0/+2
|
* Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an ↵Florent Xicluna2010-08-081-0/+3
| | | | array.
* Issue #5319: Print an error if flushing stdout fails at interpreterAntoine Pitrou2010-08-081-0/+3
| | | | shutdown.
* Issue #8047: Fix the xml.etree serializer to return bytes by default.Florent Xicluna2010-08-081-0/+3
| | | | Use ``encoding="unicode"`` to generate a Unicode string.
* Fix issue6869: refcount problem in the _ctypes extension.Thomas Heller2010-08-081-1/+3
|
* Issue #7564: Skip test_ioctl if another process is attached to /dev/tty.Florent Xicluna2010-08-081-0/+2
|
* Typo.Florent Xicluna2010-08-081-1/+1
|
* Fix issue5504: ctypes does now work with systems where mmap can't beThomas Heller2010-08-081-0/+3
| | | | PROT_WRITE and PROT_EXEC.
* Add a news entry for Issue8280.Senthil Kumaran2010-08-081-0/+4
|
* Issue #9507: Named tuple repr will now automatically display the rightRaymond Hettinger2010-08-081-0/+3
| | | | name in a tuple subclass.
* Issue #8433: Fix test_curses failure for platforms with recent versions of ↵Mark Dickinson2010-08-071-0/+2
| | | | ncurses.
* Add xml subpackages, since they are likely to have different maintainers.R. David Murray2010-08-061-1/+8
| | | | And if not they can be merged back together when that becomes apparent.
* Fix #9324: Add parameter validation to signal.signal on Windows in orderBrian Curtin2010-08-061-0/+3
| | | | to prevent crashes.
* In PySlice_IndicesEx, clip the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX] ↵Mark Dickinson2010-08-061-0/+4
| | | | rather than [PY_SSIZE_T_MIN, PY_SSIZE_T_MAX].
* Misc/NEWS entry for r83751.Mark Dickinson2010-08-061-0/+4
|
* Issue #9524: Document that two CTRL* signals are meant for use onlyBrian Curtin2010-08-051-0/+3
| | | | with os.kill.
* Issue #6683: For SMTP logins we now try all authentication methods advertisedGerhard Häring2010-08-051-0/+4
| | | | | | | by the server. Many servers are buggy and advertise authentication methods they o not support in reality. This change makes smtplib.auth() work more often in the real world, where we face misconfigured servers and servers that advertise methods they don't support due to the madness that is SASL.
* Issue #9337: Make float.__str__ identical to float.__repr__.Mark Dickinson2010-08-041-0/+3
| | | | (And similarly for complex numbers.)
* Add Terry Reedy.Martin v. Löwis2010-08-041-0/+3
|
* Issue #8814: function annotations (the `__annotations__` attribute)Antoine Pitrou2010-08-042-0/+5
| | | | | are now included in the set of attributes copied by default by functools.wraps and functools.update_wrapper. Patch by Terrence Cole.
* Issue #9496: Provide a test suite for the rlcompleter module. Patch byAntoine Pitrou2010-08-042-0/+4
| | | | Michele Orrù.
* I'm interested in threading issues as wellAntoine Pitrou2010-08-041-2/+2
|
* as per discussion with antoine revert changes made in 83708 as the user ↵Giampaolo Rodolà2010-08-042-3/+0
| | | | useing ftplib's readline methods is supposed to always use a binary file
* Something fun to maintainAntoine Pitrou2010-08-041-1/+1
|
* fix issue #6822: ftplib's storline method doesn't work with text filesGiampaolo Rodolà2010-08-042-0/+3
|
* issue #8687: provides a test suite for sched.py moduleGiampaolo Rodolà2010-08-041-0/+5
|
* fix issue #2944: asyncore doesn't handle connection refused correctly (patch ↵Giampaolo Rodolà2010-08-042-0/+3
| | | | by Alexander Shigin). Merged from 2.7 branch.
* note smtpd module changes in NEWSRichard Jones2010-08-041-0/+3
|
* #3196: if needed pad a short base64 encoded word before trying to decode.R. David Murray2010-08-032-0/+4
| | | | | | | | | The RFCs encourage following Postel's law: be liberal in what you accept. So if someone forgot to pad the base64 encoded word payload to an even four bytes, we add the padding before handing it to base64mime.decode. Previously, missing padding resulted in a HeaderParseError. Patch by Jason Williams.
* Misc/NEWS entry for r83677.Mark Dickinson2010-08-031-0/+2
|
* #9444: use first of prefix_chars for help opt instead of raising errorR. David Murray2010-08-032-0/+5
| | | | | | | | | | | An argparse option parser created with a prefix_chars that did not include a '-' would happily add -h and --help options, and then throw an error when it tried to format the help because the - was an invalid prefix character. This patch makes it use the first character of prefix_chars as the character for the help options if and only if '-' is not one of the valid prefix_chars. Fix by Theodore Turocy, unit tests by Catherine Devlin.
* Issue #8867: Fix `Tools/scripts/serve.py` to work with files containingAntoine Pitrou2010-08-031-0/+6
| | | | non-ASCII content.
* Issue #8065: Fix another memory leak in readline module, from failure to freeMark Dickinson2010-08-031-0/+3
| | | | the result of a call to history_get_history_state.
* Issue #9450: Fix memory leaks in readline.remove/replace_history_entry.Mark Dickinson2010-08-031-0/+3
|
* #7372: fix regression in pstats: a previous fix to handle cProfile data in ↵Georg Brandl2010-08-021-0/+3
| | | | add_callers broke handling of profile data.
* #9428: fix running scripts from profile/cProfile with their own name and the ↵Georg Brandl2010-08-021-0/+3
| | | | right namespace. Same fix as for trace.py in #1690103.
* #9209 and #7781: fix two crashes in pstats interactive browser.Georg Brandl2010-08-021-0/+6
|
* Fix ACKS alphabetization.R. David Murray2010-08-011-1/+1
|
* Fix style of referring to issues.Georg Brandl2010-08-011-8/+8
|
* Update OrderedDict implementation to match that in Py2.7.Raymond Hettinger2010-08-011-0/+3
|
* Issue #8397: Raise an error when attempting to mix iteration and regularAntoine Pitrou2010-08-011-0/+3
| | | | reads on a BZ2File object, rather than returning incorrect results.
* #5776: fix mistakes in python specfile. (Nobody probably uses it anyway.)Georg Brandl2010-08-011-2/+2
|