summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* This should fix a mem leak on the Mac. Brett tested it.Neal Norwitz2006-01-231-4/+3
|
* Another typo.Georg Brandl2006-01-221-1/+1
|
* typoGeorg Brandl2006-01-221-1/+2
|
* Correct several typos in libos.tex. Bug #1412227.Georg Brandl2006-01-221-11/+11
|
* TypoGeorg Brandl2006-01-221-1/+1
|
* Remove reference to Grail and Netscape 2.0 from cgi docs.Georg Brandl2006-01-221-2/+1
|
* Misc. changes, including documenting the ability to specify a class ↵Vinay Sajip2006-01-221-29/+46
| | | | attribute in Formatter configuration. Contributed by Shane Hathaway.
* Fix typoWalter Dörwald2006-01-211-1/+1
|
* Bug #902075: urllib2 now handles "host:port" proxy specificationsGeorg Brandl2006-01-212-9/+16
| | | | Can/should this be backported?
* _compile(): raise an exception if downcasting to SRE_CODETim Peters2006-01-211-37/+40
| | | | | | | | | | | | | | | | | | loses information: OverflowError: regular expression code size limit exceeded Otherwise the compiled code is gibberish, possibly leading at least to wrong results or (as reported on c.l.py) internal sre errors at match time. I'm not sure how to test this. SRE_CODE is a 2-byte type on my box, and it's easy to create a regexp that causes the new exception to trigger here. But it may be a 4-byte type on other boxes, and creating a regexp large enough to trigger problems there would be pretty crazy. Bugfix candidate.
* Whitespace normalization.Tim Peters2006-01-201-11/+11
|
* Patch #1410998: remove "DOS" from os.py docstringGeorg Brandl2006-01-201-1/+1
|
* Patch #1410783: add documentation links for static/classmethodGeorg Brandl2006-01-201-1/+9
|
* Document supported schemes.Georg Brandl2006-01-201-3/+8
|
* Try to resolve the remaining webbrowser issues (backgrounding, local urls)Georg Brandl2006-01-202-112/+206
|
* Whitespace normalization.Tim Peters2006-01-201-1/+1
|
* Added a test for the ability to specify a class attribute in Formatter ↵Vinay Sajip2006-01-201-16/+64
| | | | configuration. Contributed by Shane Hathaway.
* Added a test for the ability to specify a class attribute in Formatter ↵Vinay Sajip2006-01-201-0/+4
| | | | configuration. Contributed by Shane Hathaway.
* Added the ability to specify a class attribute in Formatter configuration. ↵Vinay Sajip2006-01-201-1/+21
| | | | Contributed by Shane Hathaway.
* Patch #1388073: Make unittest.TestCase easier to subclassGeorg Brandl2006-01-201-13/+13
|
* typoGeorg Brandl2006-01-201-1/+1
|
* Add markup to a "Python Standard Library" doc reference I added for bug 839585.Georg Brandl2006-01-201-2/+3
|
* Checkin the test of patch #1400181.Georg Brandl2006-01-201-0/+14
|
* Bug #1407902: Added support for sftp:// URIs to urlparse.Georg Brandl2006-01-202-11/+13
|
* Readd bug report note.Georg Brandl2006-01-201-0/+6
|
* Bug #1402224: Add warning to dl docs about crashes.Georg Brandl2006-01-202-0/+6
|
* Bug #1396471: Document that Windows' ftell() can return invalidGeorg Brandl2006-01-202-1/+8
| | | | values for text files with UNIX-style line endings.
* Bug #1371247: Update Windows LCIDs in locale.py.Georg Brandl2006-01-202-34/+183
|
* add missing version identificationFred Drake2006-01-201-0/+2
|
* Pass unquoted string to stat.Martin v. Löwis2006-01-191-3/+3
|
* initwinsound(): this no longer compiled on Windows,Tim Peters2006-01-191-1/+2
| | | | because code snuck in between auto declarations.
* initmsvcrt(): This no longer compiled on Windows, becauseTim Peters2006-01-191-1/+2
| | | | a recent change inserted code before an auto declaration.
* Add a more informative error message for test_float_parsing so the failingBrett Cannon2006-01-191-2/+4
| | | | locale can be known.
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-1980-0/+159
| | | | Probably should be backported.
* Quote the path to the executable before invoking system().Tim Peters2006-01-181-3/+4
|
* Add missing make_buildinfo.c.Martin v. Löwis2006-01-181-0/+87
|
* Generate getbuildinfo.o each time the linker is invoked;Martin v. Löwis2006-01-184-12/+151
| | | | | try to generate SVNVERSION information if subwcrev.exe can be found.
* fixed example:Fredrik Lundh2006-01-171-11/+19
| | | | adding missing import, handle_close, test code, etc.
* SF bug #1347874; FeedParser does not comply with RFC2822.Barry Warsaw2006-01-172-2/+11
| | | | | Change headerRE as suggested in the bug report, so that single character headers are accepted. Test case added too. Will backport to Python 2.4.
* SF Bug #1407069, Remove extra semi-colon if there is no long longNeal Norwitz2006-01-171-1/+1
|
* Update email.Message.get_filename() documentation.Barry Warsaw2006-01-171-4/+5
|
* Ported 42075 from release23-maint branch.Barry Warsaw2006-01-174-5/+51
| | | | | | | | | | | SF bug #1403349 solution for email 3.0; some MUAs use the 'file' parameter name in the Content-Distribution header, so Message.get_filename() should fall back to using that. Will port to the Python 2.5 trunk. Also, bump the email package version to 3.0.1 for eventual release. Of course, add a test case too. XXX Need to update the documentation.
* Refactoring for fileConfig. Contributed by Shane Hathaway.Vinay Sajip2006-01-161-125/+142
|
* Changes due to added test for fileConfig contributed by Shane Hathaway.Vinay Sajip2006-01-161-0/+6
|
* Added test for fileConfig. Contributed by Shane Hathaway.Vinay Sajip2006-01-161-1/+101
|
* Exceptions raised during renaming in rotating file handlers are now passed ↵Vinay Sajip2006-01-161-2/+2
| | | | to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised).
* Exceptions raised during renaming in rotating file handlers are now passed ↵Vinay Sajip2006-01-161-2/+12
| | | | to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised).
* TimedRotatingFileHandler now calculates next rollover from previous rollover ↵Vinay Sajip2006-01-161-1/+1
| | | | rather than current time.
* Fixed bug in time-to-midnight calculation.Vinay Sajip2006-01-161-3/+6
|
* refresh every 12 hours for crazy people like me that keep the page upNeal Norwitz2006-01-161-1/+5
|