Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Patch #900071] Be case-insensitive when removing 'usage:' string | Andrew M. Kuchling | 2004-03-21 | 1 | -1/+1 |
| | |||||
* | [Part of patch #909005] Handle POLLPRI flag, and various errors cases. ↵ | Andrew M. Kuchling | 2004-03-21 | 1 | -1/+3 |
| | | | | Fixes bug #887279 | ||||
* | [Patch #918212] Support XHTML's 'id' attribute, which can be on any element. | Andrew M. Kuchling | 2004-03-21 | 2 | -6/+31 |
| | |||||
* | [Patch #905863] Support the CVS version of Tcl/Tk, which has the version ↵ | Andrew M. Kuchling | 2004-03-21 | 1 | -1/+1 |
| | | | | number 8.5 | ||||
* | [Patch #850977] Detect Tcl/Tk libraries on FreeBSD/OpenBSD. Bugfix candidate | Andrew M. Kuchling | 2004-03-21 | 1 | -7/+15 |
| | |||||
* | Update URLs | Andrew M. Kuchling | 2004-03-21 | 1 | -2/+2 |
| | |||||
* | Moved tracebackobject to traceback.h, Closes SF Bug #497067 | Nicholas Bastin | 2004-03-21 | 3 | -24/+27 |
| | |||||
* | Fix typo in comment. | Raymond Hettinger | 2004-03-21 | 1 | -1/+1 |
| | |||||
* | SF bug 917108: warnings.py does not define _test(). | Tim Peters | 2004-03-21 | 1 | -8/+3 |
| | | | | Removed the entire __name__ == '__main__' block. | ||||
* | Add identity shortcut to PyObject_RichCompareBool. | Raymond Hettinger | 2004-03-21 | 1 | -1/+11 |
| | |||||
* | Modified string.split documentation to reflect behaviour of splitting emtpy ↵ | Nicholas Bastin | 2004-03-21 | 1 | -0/+5 |
| | | | | string. Closes SF bug #811604 | ||||
* | recursive_isinstance(), recursive_issubclass(): New code here returned | Tim Peters | 2004-03-21 | 1 | -2/+2 |
| | | | | | NULL in case of error, but the functions are declared to return int. MSVC 6 properly complains about that. Return -1 on error instead. | ||||
* | [693255] also back out corresponding NEWS item... | Just van Rossum | 2004-03-21 | 1 | -2/+0 |
| | |||||
* | concrete example of why retaining old objects is good | Skip Montanaro | 2004-03-21 | 1 | -1/+9 |
| | |||||
* | Patch #853488: Tix hlist missing entryconfigure and entrycget methods. | Martin v. Löwis | 2004-03-21 | 1 | -0/+2 |
| | |||||
* | Patch #853488: Add hlist entry_configure and entry_cget methods. | Martin v. Löwis | 2004-03-21 | 1 | -0/+11 |
| | |||||
* | Remove unused instance attributes. | Neil Schemenauer | 2004-03-21 | 1 | -2/+0 |
| | |||||
* | Improve byte coding for multiple assignments. | Raymond Hettinger | 2004-03-21 | 2 | -3/+77 |
| | | | | Gives 30% speedup on "a,b=1,2" and 25% on "a,b,c=1,2,3". | ||||
* | Removed extra period from \versionchanged entry; macro adds period | Brett Cannon | 2004-03-21 | 1 | -1/+1 |
| | | | | automatically. | ||||
* | Back out last patch that removed an entry from sys.path if it was not an | Brett Cannon | 2004-03-21 | 1 | -1/+1 |
| | | | | | existent path. Pointed out by jvr that entries could be non-file items for custom importers. | ||||
* | Deal with case of when locale time values has characters that can be mistaken | Brett Cannon | 2004-03-20 | 1 | -2/+14 |
| | | | | | for regex syntax. Fixes bug #883604 . | ||||
* | Limit the nesting depth of a tuple passed as the second argument to | Brett Cannon | 2004-03-20 | 3 | -10/+58 |
| | | | | isinstance() or issubclass() to the recursion limit of the interpreter. | ||||
* | Fix for SF 780407. | Guido van Rossum | 2004-03-20 | 1 | -1/+1 |
| | | | | | Change %08l to %p to print a pointer. Will backport to 2.3. | ||||
* | Get rid of listextend_internal() and explain why the special case | Armin Rigo | 2004-03-20 | 1 | -51/+25 |
| | | | | 'a.extend(a)' isn't so special anyway. | ||||
* | Fix for SF 777848. | Guido van Rossum | 2004-03-20 | 1 | -6/+5 |
| | | | | | | I've been bitten by this myself in the past half year. I hope this fix is right. I'll backport this to 2.3. | ||||
* | SF patch 508730 CGIHTTPServer execfile should save cwd | Tim Peters | 2004-03-20 | 1 | -1/+3 |
| | | | | | | | | | | | UNTESTED!!! This simple two-line patch has been sitting on SF for more than 2 years. I'm guessing it's because nobody knows how to test it -- I sure don't. It doesn't look like you can get to this part of the code on Unixish or Windows systems, so the "how to test it?" puzzle has more than one part. OTOH, if this is dead code, it doesn't matter either if I just broke it <wink>. | ||||
* | Cancelled checkin, sorry. | Armin Rigo | 2004-03-20 | 1 | -10/+6 |
| | |||||
* | Clarify docs on where .pth files can exist. | Brett Cannon | 2004-03-20 | 1 | -1/+2 |
| | |||||
* | memset() hunt continuing. This is a net win. | Armin Rigo | 2004-03-20 | 1 | -1/+3 |
| | |||||
* | Remove non-existent paths. | Brett Cannon | 2004-03-20 | 2 | -1/+3 |
| | |||||
* | memset() with small memory sizes just kill us. | Armin Rigo | 2004-03-20 | 1 | -2/+4 |
| | |||||
* | Fix how line endings were handled when iterating over a .pth file by stripping | Brett Cannon | 2004-03-20 | 1 | -2/+1 |
| | | | | all whitespace at the end of the path line. | ||||
* | Tweaked after following all these instructions. | Guido van Rossum | 2004-03-20 | 1 | -37/+11 |
| | | | | Removed Win9x notes (since the .NET compiler requires Win2K or XP anyway). | ||||
* | test_email: comment out two fail-test cases that no longer fail with the new | Thomas Wouters | 2004-03-20 | 1 | -25/+27 |
| | | | | | parser -- for now. Failure behaviour of the new parser(s) will change in any case, so this will be revisited later anyway. | ||||
* | Speed HMAC.copy() by installing a secret backdoor argument to | Tim Peters | 2004-03-20 | 1 | -1/+11 |
| | | | | | | HMAC.__init__(). Adapted from SF patch 895445 "hmac.HMAC.copy() speedup" by Trevor Perrin, who reported that this approach increased throughput of his hmac-intensive app by 30%. | ||||
* | A 2% speed improvement with gcc on low-endian machines. My guess is that this | Armin Rigo | 2004-03-20 | 1 | -6/+10 |
| | | | | | new pattern for NEXTARG() is detected and optimized as a single (*short) loading. | ||||
* | GCC was complaining that 'value' in dictiter_iternextvalue() wasn't | Guido van Rossum | 2004-03-20 | 1 | -5/+6 |
| | | | | | | necessarily always set before used. Between Tim, Armin & me we couldn't prove GCC wrong, so we decided to fix the algorithm. This version is Armin's. | ||||
* | SF bug #918371: hasattr()'s return type | Raymond Hettinger | 2004-03-20 | 1 | -2/+2 |
| | | | | Replace 1 and 0 with True and False. | ||||
* | Merge in Anthony's new parser code, from the anthony-parser-branch: | Thomas Wouters | 2004-03-20 | 1 | -128/+173 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > ---------------------------- > revision 1.20.4.4 > date: 2003/06/12 09:14:17; author: anthonybaxter; state: Exp; lines: +13 -6 > preamble is None when missing, not ''. > Handle a couple of bogus formatted messages - now parses my main testsuite. > Handle message/external-body. > ---------------------------- > revision 1.20.4.3 > date: 2003/06/12 07:16:40; author: anthonybaxter; state: Exp; lines: +6 -4 > epilogue-processing is now the same as the old parser - the newline at the > end of the line with the --endboundary-- is included as part of the epilogue. > Note that any whitespace after the boundary is _not_ part of the epilogue. > ---------------------------- > revision 1.20.4.2 > date: 2003/06/12 06:39:09; author: anthonybaxter; state: Exp; lines: +6 -4 > message/delivery-status fixed. > HeaderParser fixed. > ---------------------------- > revision 1.20.4.1 > date: 2003/06/12 06:08:56; author: anthonybaxter; state: Exp; lines: +163 -129 > A work-in-progress snapshot of the new parser. A couple of known problems: > > - first (blank) line of MIME epilogues is being consumed > - message/delivery-status isn't quite right > > It still needs a lot of cleanup, but right now it parses a whole lot of > badness that the old parser failed on. I also need to think about adding > back the old 'strict' flag in some way. > ============================================================================= | ||||
* | Update copyright years, and change copyright.tex to use the same spelling | Tim Peters | 2004-03-20 | 2 | -2/+2 |
| | | | | | as license.tex (SF patch 795531 complained about the spelling discrepancy, although this "repairs" that flaw in a different way than the patch). | ||||
* | commit the portion of PyXML patch #919008 that is relevant to the | Fred Drake | 2004-03-20 | 2 | -2/+42 |
| | | | | | | | standard library: str() of xml.sax.SAXParseException should not fail if the line and/or column number returned by the locator are None (tests added) | ||||
* | fix two typos that turned text into markup | Fred Drake | 2004-03-20 | 1 | -1/+1 |
| | |||||
* | Ignore oodles of MSVC-generated files. | Tim Peters | 2004-03-20 | 1 | -0/+14 |
| | |||||
* | A helper for rt.bat, copied (but with path adjustment) from PCbuild. | Tim Peters | 2004-03-20 | 1 | -0/+25 |
| | |||||
* | PyFile_WriteObject(): some of the local variables are only used when | Fred Drake | 2004-03-19 | 1 | -0/+2 |
| | | | | Py_USING_UNICODE is defined | ||||
* | Expand on the semantics of reload(). Closes #919099. | Skip Montanaro | 2004-03-19 | 1 | -2/+24 |
| | |||||
* | Factor out a double lookup. | Raymond Hettinger | 2004-03-19 | 1 | -2/+1 |
| | |||||
* | Add an entry for addition of the ptcp154 codec. | Hye-Shik Chang | 2004-03-19 | 1 | -0/+2 |
| | |||||
* | Add a new unicode codec: ptcp154 (Kazakh) | Hye-Shik Chang | 2004-03-19 | 3 | -0/+172 |
| | |||||
* | Make iterators length transparent where possible. | Raymond Hettinger | 2004-03-18 | 3 | -3/+42 |
| |