Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adjust usage of compiler_use_new_block to its return type. | Martin v. Löwis | 2006-01-02 | 1 | -2/+2 |
| | |||||
* | Script to automatically build and test python and doc. The results | Neal Norwitz | 2006-01-02 | 1 | -0/+192 |
| | | | | | | are copied up to docs.python.org/dev Needs lots more work. Feel free to add code, fixes, or FIXME comments. | ||||
* | update to reflect move to Subversion | Fred Drake | 2006-01-02 | 3 | -272/+8 |
| | |||||
* | Fix ref/memory leak introduced in rev 41845. | Neal Norwitz | 2006-01-02 | 1 | -0/+2 |
| | |||||
* | Ported from 2.4 branch: | Barry Warsaw | 2006-01-01 | 2 | -4/+7 |
| | | | | Patch by Ori Avtalion to fix a minor display glitch in the RightArrow. | ||||
* | Bug #1394868: doc typos | Georg Brandl | 2006-01-01 | 3 | -5/+5 |
| | |||||
* | Fixed English in a comment; trimmed trailing whitespace; | Tim Peters | 2006-01-01 | 1 | -11/+11 |
| | | | | no code changes. | ||||
* | test_main(): Restore the original root logger level after running | Tim Peters | 2005-12-30 | 1 | -0/+9 |
| | | | | | | | | | | the tests. This stops the confusing/annoying: No handlers could be found for logger "cookielib" message we got whenever some test running after test_logging happened to use cookielib.py (when not using regrtest's -r, this happened during test_urllib2; when using -r, it varied). | ||||
* | Whitespace normalization. | Tim Peters | 2005-12-30 | 2 | -2/+2 |
| | |||||
* | Work around test_locale failing on Solaris. | Martin v. Löwis | 2005-12-30 | 1 | -3/+8 |
| | | | | Will backport to 2.4. | ||||
* | Use -xcode=pic32 for SunPro. Will backport to 2.4. | Martin v. Löwis | 2005-12-30 | 3 | -1/+5 |
| | |||||
* | Fix a delimiter detection problem in sniffer. Sniffing "a|b|c\r\n" was | Skip Montanaro | 2005-12-30 | 2 | -3/+17 |
| | | | | | | | | returning 'a' as the delimiter. It now returns '|', but not because I understood better what the code was supposed to do. Would someone that understands the idea behind _guess_delimiter() (see its doc string) look to see if my fallback choice is better than before or if it's just serendipity that I picked the proper delimiter? | ||||
* | typo, use parens for continued expr | Skip Montanaro | 2005-12-30 | 1 | -3/+3 |
| | |||||
* | SF#1391872 | Fredrik Lundh | 2005-12-29 | 2 | -2/+14 |
| | | | | | Floating point literals don't work in non-US locale in 2.5. Patch and new locale tests by Hye-Shik Chang. | ||||
* | SF patch #1379023: document that a weakref callback is not invoked if the | Armin Rigo | 2005-12-29 | 1 | -2/+2 |
| | | | | weakref object itself is deleted first. | ||||
* | SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". | Armin Rigo | 2005-12-29 | 2 | -0/+64 |
| | | | | | A patch by mwh to check that user-defined mro's are reasonable enough. | ||||
* | adding in-place operators to the operator module. | Armin Rigo | 2005-12-29 | 3 | -1/+190 |
| | |||||
* | Typo. | Armin Rigo | 2005-12-29 | 1 | -1/+1 |
| | |||||
* | SF patch #1390657: | Armin Rigo | 2005-12-29 | 4 | -22/+172 |
| | | | | | | | | | | | | | | | | | * set sq_repeat and sq_concat to NULL for user-defined new-style classes, as a way to fix a number of related problems. See test_descr.notimplemented()). One of these problems was fixed in r25556 and r25557 but many more existed; this is a general fix and thus reverts r25556-r25557. * to avoid having PySequence_Repeat()/PySequence_Concat() failing on user-defined classes, they now fall back to nb_add/nb_mul if sq_concat/sq_repeat are not defined and the arguments appear to be sequences. * added tests. Backport candidate. | ||||
* | two missing PyDoc_STR(). | Armin Rigo | 2005-12-29 | 1 | -2/+2 |
| | |||||
* | typo | Skip Montanaro | 2005-12-28 | 1 | -1/+1 |
| | |||||
* | Fix for problem with Sniffer class. If your delimiter is whitespace and the | Skip Montanaro | 2005-12-28 | 2 | -2/+5 |
| | | | | | | last field was empty it would strip the delimiter and incorrectly guess that "" was the delimiter. Reported in c.l.py by Laurent Laporte. Will backport. | ||||
* | Bug #999767: make setup.py obey Setup.local wrt shared modules | Georg Brandl | 2005-12-27 | 1 | -10/+11 |
| | |||||
* | [ 959576 ] Can't build Python on POSIX w/o $HOME | Georg Brandl | 2005-12-27 | 2 | -1/+5 |
| | |||||
* | Revert checkin for bug #1386675. | Georg Brandl | 2005-12-27 | 1 | -6/+6 |
| | |||||
* | Bug #1386675: winreg raises WindowsErrors | Georg Brandl | 2005-12-27 | 1 | -6/+6 |
| | |||||
* | Bug #1389673: document correct return value of set methods | Georg Brandl | 2005-12-26 | 1 | -5/+5 |
| | |||||
* | Bug #489256: remove note about Python 1.1 profiler | Georg Brandl | 2005-12-26 | 1 | -41/+41 |
| | |||||
* | Bug #954981: urllib2 example wont work w/o ssl | Georg Brandl | 2005-12-26 | 1 | -1/+2 |
| | |||||
* | Bug #839075: document that highly recursive data cannot be pickled | Georg Brandl | 2005-12-26 | 1 | -0/+4 |
| | |||||
* | Bug #839585: mention % string operator in language ref | Georg Brandl | 2005-12-26 | 1 | -0/+6 |
| | |||||
* | Bug #756104: document that bufsize in socket.recv() should be small | Georg Brandl | 2005-12-26 | 1 | -0/+2 |
| | |||||
* | Bug #649974: make docstrings for url2pathname consistent | Georg Brandl | 2005-12-26 | 4 | -21/+25 |
| | |||||
* | Updating the short blob about old/new-style classes to reflect (IMHO) more | Armin Rigo | 2005-12-26 | 1 | -7/+35 |
| | | | | | | | | precisely the motivation and the differences. Added links to www.python.org/doc/newstyle.html and a footnote to warn against the statement "x[i] is equivalent to x.__getitem__(i)", which already caused many invalid bug reports on SF. | ||||
* | As reported on c.l.py, the _elementtree project | Tim Peters | 2005-12-26 | 1 | -0/+1 |
| | | | | should depend on the pythoncore project. | ||||
* | Whitespace normalization. | Tim Peters | 2005-12-25 | 82 | -34035/+33987 |
| | |||||
* | test_bug_1333982(): This one must fail under -O. | Tim Peters | 2005-12-25 | 1 | -1/+4 |
| | | | | All the --all test pass using -O on WinXP now. | ||||
* | Repair longstanding damage introduced by the AST merge: | Tim Peters | 2005-12-25 | 1 | -4/+25 |
| | | | | | | | | - Get rid of pgen.c and tokenizer_pgen.c. - Include tokenizer.c. All the -uall tests pass on my WinXP VC7.1 box now. | ||||
* | fixed one more typo | Fredrik Lundh | 2005-12-25 | 1 | -1/+1 |
| | |||||
* | SF#1389809 | Fredrik Lundh | 2005-12-25 | 1 | -1/+1 |
| | | | | | | cast first PyUnicode_Decode argument to proper type (why is "char *" used for encoded byte streams, btw? shouldn't that be "void *" or, if necessary, "unsigned char *"?) | ||||
* | fixed two typos in pprint reference page | Fredrik Lundh | 2005-12-25 | 1 | -2/+2 |
| | |||||
* | do_mkvalue(), 'I' and 'k' cases: squash legitimate | Tim Peters | 2005-12-24 | 1 | -2/+2 |
| | | | | | compiler warnings about mixing signed and unsigned types in comparisons. | ||||
* | const poisoning, spreading to fix new const warnings | Tim Peters | 2005-12-24 | 3 | -8/+8 |
| | | | | in _winreg.c. | ||||
* | Ignore pyc files for building doc | Neal Norwitz | 2005-12-24 | 0 | -0/+0 |
| | |||||
* | Patch #1157027, cookielib mis-handles RFC 2109 cookies in Netscape mode | Neal Norwitz | 2005-12-23 | 1 | -0/+2 |
| | |||||
* | SF patch #1157027, cookielib mis-handles RFC 2109 cookies in Netscape mode | Neal Norwitz | 2005-12-23 | 3 | -22/+100 |
| | |||||
* | Add missing dep for cookielib doc | Neal Norwitz | 2005-12-23 | 1 | -0/+1 |
| | |||||
* | Patch #1117398: fix cookielib LoadError | Neal Norwitz | 2005-12-23 | 1 | -0/+4 |
| | |||||
* | Fix SF #1117398, cookielib LWPCookieJar and MozillaCookieJar exceptions | Neal Norwitz | 2005-12-23 | 4 | -10/+36 |
| | | | | | | cookielib.LWPCookieJar and .MozillaCookieJar are documented to raise cookielib.LoadError on attempt to load an invalid cookies file, but raise IOError instead. Compromise by having LoadError subclass IOError. | ||||
* | [Patch #1375417] Massive rearrangement of the Library Reference. | Andrew M. Kuchling | 2005-12-22 | 1 | -136/+230 |
| | | | | | | | | | Fred approved just checking it in; he may make further fixes. The change shrinks the 'Generic OS' and other OS chapters, which had become something of a dumping ground for random modules. It differs from the last version of the patch: 1) I've added introductions for the new chapters (still missing a few -- search for 'intro') 2) a few modules have been rearranged slightly from the version in the patch |