Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from | Victor Stinner | 2011-01-02 | 1 | -0/+3 |
| | | | | the codec aliases. They are still accessible via codecs.lookup(). | ||||
* | Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSD | Antoine Pitrou | 2011-01-02 | 1 | -0/+3 |
| | | | | and DragonFly BSD. Patch by Nicolas Joly. | ||||
* | #10801: In zipfile, support different encodings for the header and the ↵ | Georg Brandl | 2011-01-01 | 1 | -0/+3 |
| | | | | filenames. Patch by MvL, test by Eli Bendersky. | ||||
* | Fix issue references. | Georg Brandl | 2011-01-01 | 1 | -9/+9 |
| | |||||
* | Issue 6285: add NEWS entry for 3.2. | Terry Reedy | 2011-01-01 | 1 | -0/+3 |
| | |||||
* | Typo. | Raymond Hettinger | 2010-12-31 | 1 | -1/+1 |
| | |||||
* | Fix OrderedDict.setdefault() to work for subclasses that define __missing__(). | Raymond Hettinger | 2010-12-31 | 1 | -0/+3 |
| | |||||
* | Remove mentions of the Demo directory. | Georg Brandl | 2010-12-30 | 1 | -0/+7 |
| | |||||
* | Issue 10786: unittest.TextTestRunner default stream no longer bound at ↵ | Michael Foord | 2010-12-30 | 1 | -0/+4 |
| | | | | import time | ||||
* | Minor clarification | Terry Reedy | 2010-12-29 | 1 | -2/+2 |
| | |||||
* | Fix Issue 10753 - Don't quote ;=, in the PATH_INFO envvar. | Senthil Kumaran | 2010-12-29 | 1 | -0/+5 |
| | |||||
* | Issue #10783: rephrase the changelog (new try) | Victor Stinner | 2010-12-29 | 1 | -1/+1 |
| | |||||
* | Issue #10783: rephrase the changelog (NEWS, What's new) | Victor Stinner | 2010-12-28 | 1 | -2/+1 |
| | |||||
* | Issue 10738: Fix webbrowser.Opera.raise_opts value. | Terry Reedy | 2010-12-28 | 1 | -0/+2 |
| | |||||
* | #9824: encode , and ; in cookie values so that browsers don't split on them | R. David Murray | 2010-12-28 | 1 | -0/+3 |
| | | | | | | | | There is a small chance of backward incompatibility here, but only for non-SimpleCookie applications reading SimpleCookie generated cookies. Even then, any such ap is likely to be handling escaped values already, and it would take a fairly perverse implementation of unescaping to fail to unescape these newly escaped chars, so the risk seems minimal. | ||||
* | Add sys.flags.quiet attribute for the new -q option, as noted missing by ↵ | Georg Brandl | 2010-12-28 | 1 | -0/+2 |
| | | | | Eric in #1772833. | ||||
* | Fix #9333. The symlink function is always available now, raising OSError | Brian Curtin | 2010-12-28 | 1 | -0/+4 |
| | | | | when the user doesn't hold the symbolic link privilege rather than hiding it. | ||||
* | Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 | Victor Stinner | 2010-12-28 | 1 | -0/+3 |
| | | | | | | | * Replace "bytes" by "bytes object" in struct error messages * Document the API change in What's new in Python 3.2 * Fix test_wave * Remove also ugly implicit conversions in test_struct | ||||
* | Add news entry and clarify another. | Georg Brandl | 2010-12-28 | 1 | -2/+4 |
| | |||||
* | #10768: fix ScrolledText widget construction, and make the example work from ↵ | Georg Brandl | 2010-12-28 | 1 | -0/+2 |
| | | | | the interactive shell. | ||||
* | #10777: fix iteration over dict keys while mutating the dict. | Georg Brandl | 2010-12-28 | 1 | -0/+3 |
| | |||||
* | #10679: install idle, pydoc, 2to3 scripts with X.Y suffix for make ↵ | Georg Brandl | 2010-12-28 | 1 | -0/+6 |
| | | | | altinstall; create symlinks for make install. | ||||
* | Issue #10780: PyErr_SetFromWindowsErrWithFilename() and | Victor Stinner | 2010-12-28 | 1 | -0/+4 |
| | | | | | PyErr_SetExcFromWindowsErrWithFilename() decode the filename from the filesystem encoding instead of UTF-8. | ||||
* | Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem | Victor Stinner | 2010-12-27 | 1 | -0/+3 |
| | | | | encoding instead of UTF-8. | ||||
* | Issue #10626: test_logging now preserves logger disabled states. | Vinay Sajip | 2010-12-27 | 1 | -2/+4 |
| | |||||
* | Issue #10774: test_logging now removes temp files created during tests. | Vinay Sajip | 2010-12-27 | 1 | -0/+2 |
| | |||||
* | #5258/#10642: print fn, line, traceback and continue when .pth file is broken | R. David Murray | 2010-12-26 | 1 | -0/+4 |
| | | | | | | | | | | If a .pth file contained an error, it could cause a traceback in site.py, terminating its processing. In 2.7 and 3.2, the interpreter will then not start. Previously, a message would print saying to use -v to get the traceback. In either case, the traceback generated for a failed .pth file did not include the .pth filename, making it difficult to debug the problem. Now site.py reports not only the .pth filename but also the line number causing the error, and just skips the remainder of the file. | ||||
* | Issue #10763: subprocess.communicate() closes stdout and stderr if both are | Victor Stinner | 2010-12-25 | 1 | -0/+3 |
| | | | | | | pipes (bug specific to Windows). Improve also the unit test: write a portable unit test. | ||||
* | #1693546: don't add quotes around RFC 2231 encoded values. | R. David Murray | 2010-12-24 | 1 | -0/+3 |
| | | | | | | | | The RFC is bit hard to understand on this point, but the examples clearly show that parameter values that are encoded according to its charset/language rules don't have surrounding quotes, and the ABNF does not allow for quotes. So when we produce such encoded values, we no longer add quotes. | ||||
* | Add news entry for 87471. | Raymond Hettinger | 2010-12-24 | 1 | -0/+2 |
| | |||||
* | #1155362: allow hh:mm:ss-uuuu like we allow hh:mm:ss+uuuu in parsedate_tz | R. David Murray | 2010-12-23 | 1 | -0/+3 |
| | | | | Original patch by Thomas Herve. | ||||
* | #4871: check that zipfile password is bytes, and give useful error message. | R. David Murray | 2010-12-21 | 1 | -0/+3 |
| | | | | | | | | | Previously passing a string in as the password would fail either with an assertion error or a TypeError with a confusing error message. Note that a string can't be accepted since zipfile has no way to guess what encoding should be used to turn it into bytes. Patch by Victor Stinner. | ||||
* | Issue #10750: The `raw` attribute of buffered IO objects is now read-only. | Antoine Pitrou | 2010-12-21 | 1 | -0/+2 |
| | |||||
* | Deprecate assertDictContainsSubset() | Raymond Hettinger | 2010-12-21 | 1 | -0/+12 |
| | |||||
* | Issue3243 - Support iterable bodies in httplib. Patch contributions by ↵ | Senthil Kumaran | 2010-12-19 | 1 | -0/+3 |
| | | | | Xuanji Li and Chris AtLee. | ||||
* | Bump to 3.2b2. | Georg Brandl | 2010-12-19 | 1 | -1/+1 |
| | |||||
* | #6075: make idle work with both Carbon AquaTk and Cocoa AquaTk. Patch by ↵ | Georg Brandl | 2010-12-19 | 1 | -0/+3 |
| | | | | Kevin Walzer and Ned Deily. | ||||
* | Issue 10611. Issue 9857. Improve the way exception handling, including test ↵ | Michael Foord | 2010-12-19 | 1 | -1/+6 |
| | | | | skipping, is done inside TestCase.run | ||||
* | #10573: use actual/expected consistently in unittest methods. The order of ↵ | Ezio Melotti | 2010-12-18 | 1 | -0/+3 |
| | | | | the args of assertCountEqual is also changed. | ||||
* | #9286: Fix the rfc822 parser to preserve whitespace in address local part. | R. David Murray | 2010-12-18 | 1 | -0/+3 |
| | | | | | | | | | | | | Such addresses are not RFC compliant except under the 'obsolete syntax' rules, but before this fix the whitespace was dropped from the input, concatenating the pieces. That breaks one of the principles of the email package, that of preserving the input as much as possible. It also denies the application program the opportunity to apply its own heuristics to interpretation of such non-compliant addresses. It is possible users of the email package were depending on the local part always being a single token, so this fix will not be backported. | ||||
* | NEWS entry for r87373 | Antoine Pitrou | 2010-12-18 | 1 | -0/+3 |
| | |||||
* | #10404: Use ctl-button-1 for context menus on OSX Idle. | R. David Murray | 2010-12-18 | 1 | -1/+3 |
| | | | | | | | | This provides access to the context menus where they previously could not be accessed due to the way OSX Tk binds buttons. It also improves platform consistency. Patch by Ned Deily. | ||||
* | #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel ↵ | Ezio Melotti | 2010-12-18 | 1 | -0/+3 |
| | | | | Urban. | ||||
* | Add subparser aliases for argparse. Resolves issue 9324. Approved by Georg ↵ | Steven Bethard | 2010-12-18 | 1 | -0/+2 |
| | | | | for beta2 on the tracker. | ||||
* | #9907: call rl_initialize early when using editline on OSX | R. David Murray | 2010-12-18 | 1 | -0/+3 |
| | | | | | | | | | | editline rl_initialize apparently discards any mappings done before it is called, which makes tab revert to file completion instead of inserting a tab. So now on OSX we call rl_initialize first if we are using readline, and then re-read the users .editrc (if any) afterward so they can still override our defaults. Patch by Ned Deily, modified by Ronald Oussoren. | ||||
* | 100% test coverage, better mapping protocol compatibility, some minor bugfixes | Łukasz Langa | 2010-12-17 | 1 | -1/+5 |
| | |||||
* | Upgrade to sqlite3 3.7.4. | Martin v. Löwis | 2010-12-17 | 1 | -1/+1 |
| | |||||
* | Upgrade Tcl/Tk to 8.5.9. | Martin v. Löwis | 2010-12-17 | 1 | -0/+5 |
| | |||||
* | Issue #4188: Avoid creating dummy thread objects when logging operations | Antoine Pitrou | 2010-12-17 | 1 | -0/+3 |
| | | | | from the threading module (with the internal verbose flag activated). | ||||
* | Issue #10711: Remove HTTP 0.9 support from http.client. The `strict` | Antoine Pitrou | 2010-12-17 | 1 | -0/+4 |
| | | | | parameter to HTTPConnection and friends is deprecated. |