Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #1484695: Update the tarfile module to version 0.8. This fixes | Georg Brandl | 2006-05-10 | 5 | -183/+256 |
| | | | | | a couple of issues, notably handling of long file names using the GNU LONGNAME extension. | ||||
* | Bug #1484978: curses.panel: clarify that Panel objects are destroyed on ↵ | Georg Brandl | 2006-05-10 | 1 | -0/+3 |
| | | | | garbage collection. | ||||
* | Bug #1485447: subprocess: document that the "cwd" parameter isn't used to ↵ | Georg Brandl | 2006-05-10 | 1 | -6/+9 |
| | | | | find the executable. Misc. other markup fixes. | ||||
* | Bug #1482988: indicate more prominently that the Stats class is in the ↵ | Georg Brandl | 2006-05-10 | 1 | -2/+3 |
| | | | | pstats module. | ||||
* | Ignore reflog.txt, too. | Thomas Wouters | 2006-05-10 | 0 | -0/+0 |
| | |||||
* | Fix problems found by Coverity. | Neal Norwitz | 2006-05-10 | 4 | -8/+12 |
| | | | | | | | | | | | | | longobject.c: also fix an ssize_t problem <a> could have been NULL, so hoist the size calc to not use <a>. _ssl.c: under fail: self is DECREF'd, but it would have been NULL. _elementtree.c: delete self if there was an error. _csv.c: I'm not sure if lineterminator could have been anything other than a string. However, other string method calls are checked, so check this one too. | ||||
* | Variant of patch #1478292. doctest.register_optionflag(name) | Tim Peters | 2006-05-10 | 3 | -4/+26 |
| | | | | | shouldn't create a new flag when `name` is already the name of an option flag. | ||||
* | Disable a test that is unreliable. | Thomas Heller | 2006-05-09 | 1 | -11/+16 |
| | |||||
* | Micro optimization. In the first case, we know that frame->f_exc_type | Neal Norwitz | 2006-05-09 | 1 | -3/+1 |
| | | | | | is NULL, so there's no reason to do anything with it. In the second case, we know frame->f_exc_type is not NULL, so we can just do an INCREF. | ||||
* | Patch #1478993: take advantage of BaseException/Exception split in cookielib | Georg Brandl | 2006-05-08 | 3 | -29/+35 |
| | |||||
* | Patch #1479302: Make urllib2 digest auth and basic auth play together. | Georg Brandl | 2006-05-08 | 2 | -3/+21 |
| | |||||
* | Add test for rev. 45934. | Georg Brandl | 2006-05-08 | 1 | -0/+16 |
| | |||||
* | Add missing PyMem_Free. | Martin v. Löwis | 2006-05-08 | 1 | -0/+1 |
| | |||||
* | Patch #1483395: add new TLDs to cookielib | Georg Brandl | 2006-05-07 | 1 | -4/+7 |
| | |||||
* | Minor language edit | Andrew M. Kuchling | 2006-05-07 | 1 | -5/+5 |
| | |||||
* | [Patch #1479977] Revised version of urllib2 HOWTO, edited by John J. Lee | Andrew M. Kuchling | 2006-05-07 | 1 | -143/+308 |
| | |||||
* | Handle ERROR_ALREADY_EXISTS. | Martin v. Löwis | 2006-05-06 | 1 | -0/+8 |
| | |||||
* | Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API. | Martin v. Löwis | 2006-05-06 | 4 | -54/+211 |
| | |||||
* | Use \versionchanged for the feature change | George Yoshida | 2006-05-06 | 1 | -3/+3 |
| | |||||
* | describe optional arguments for DocFileSuite | George Yoshida | 2006-05-06 | 1 | -1/+5 |
| | |||||
* | Clean up. | Thomas Heller | 2006-05-05 | 1 | -6/+1 |
| | |||||
* | oops - the function is exported as 'my_free', not 'free'. | Thomas Heller | 2006-05-05 | 1 | -4/+4 |
| | |||||
* | Fix memory leaks in the ctypes test suite, reported by valgrind, by | Thomas Heller | 2006-05-05 | 1 | -0/+8 |
| | | | | free()ing the memory we allocate. | ||||
* | Export the 'free' standard C function for use in the test suite. | Thomas Heller | 2006-05-05 | 1 | -0/+5 |
| | |||||
* | Update checks to consider Windows error numbers. | Martin v. Löwis | 2006-05-04 | 1 | -3/+29 |
| | |||||
* | Drop now-unnecessary arguments to posix_2str. | Martin v. Löwis | 2006-05-04 | 1 | -3/+3 |
| | |||||
* | Implement os.{chdir,rename,rmdir,remove} using Win32 directly. | Martin v. Löwis | 2006-05-04 | 4 | -96/+178 |
| | |||||
* | Patch #1475845: Raise IndentationError for unexpected indent. | Martin v. Löwis | 2006-05-04 | 3 | -3/+23 |
| | |||||
* | Bug #1481530: allow "from os.path import ..." with imputil | Georg Brandl | 2006-05-04 | 1 | -2/+5 |
| | |||||
* | Don't fail the tests when libglut.so or libgle.so cannot be loaded. | Thomas Heller | 2006-05-03 | 1 | -2/+16 |
| | |||||
* | Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package. | Georg Brandl | 2006-05-03 | 3 | -7/+11 |
| | |||||
* | Bug #1472191: convert breakpoint indices to ints before comparing them to ints | Georg Brandl | 2006-05-03 | 1 | -1/+7 |
| | |||||
* | RFE #1472176: In httplib, don't encode the netloc and hostname with "idna" ↵ | Georg Brandl | 2006-05-03 | 1 | -4/+13 |
| | | | | if not necessary. | ||||
* | Add seamonkey to list of Windows browsers too. | Georg Brandl | 2006-05-03 | 1 | -1/+2 |
| | |||||
* | Get rid of a couple more context object references, fix some markup and ↵ | Nick Coghlan | 2006-05-03 | 2 | -9/+10 |
| | | | | clarify what happens when a generator context function swallows an exception. | ||||
* | Finish bringing SVN into line with latest version of PEP 343 by getting rid ↵ | Nick Coghlan | 2006-05-03 | 8 | -119/+100 |
| | | | | of all remaining references to context objects that I could find. Without a __context__() method context objects no longer exist. Also get test_with working again, and adopt a suggestion from Neal for decimal.Context.get_manager() | ||||
* | Move network tests from test_urllib2 to test_urllib2net. | Georg Brandl | 2006-05-03 | 2 | -135/+137 |
| | |||||
* | Patch #1480067: don't redirect HTTP digest auth in urllib2 | Georg Brandl | 2006-05-03 | 1 | -1/+1 |
| | |||||
* | Correct some formulations, fix XXX comments. | Martin v. Löwis | 2006-05-03 | 1 | -7/+5 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-05-03 | 8 | -72/+64 |
| | |||||
* | fix up whitespace in prompt strings | Fred Drake | 2006-05-03 | 1 | -1/+1 |
| | |||||
* | one more place to avoid extra markup (how many will there be?) | Fred Drake | 2006-05-03 | 1 | -1/+1 |
| | |||||
* | one more place to avoid extra markup | Fred Drake | 2006-05-03 | 1 | -1/+1 |
| | |||||
* | at least comment on why curly-quotes are not enabled | Fred Drake | 2006-05-03 | 1 | -0/+3 |
| | |||||
* | avoid ugly markup based on the unfortunate conversions of ">>" and "<<" to | Fred Drake | 2006-05-03 | 14 | -23/+23 |
| | | | | guillemets; no need for magic here | ||||
* | tell LaTeX2HTML to: | Fred Drake | 2006-05-03 | 1 | -1/+15 |
| | | | | | - use UTF-8 output - not mess with the >>> prompt! | ||||
* | remove unnecessary assignment | Fred Drake | 2006-05-03 | 1 | -1/+0 |
| | |||||
* | Update context manager section for removal of __context__ | Andrew M. Kuchling | 2006-05-02 | 1 | -54/+16 |
| | |||||
* | Use open() instead of file() | Andrew M. Kuchling | 2006-05-02 | 2 | -23/+23 |
| | |||||
* | Hopefully this will fix the spurious failures of test_mailbox.py that I'm | Guido van Rossum | 2006-05-02 | 1 | -4/+8 |
| | | | | | experiencing. (This code and mailbox.py itself are full of calls to file() that should be calls to open() -- but I'm not fixing those.) |