Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | test_rude_shutdown(): Rewrote to use proper thread | Tim Peters | 2006-01-24 | 1 | -11/+19 |
| | | | | synchronization and termination. | ||||
* | Whitespace normalization. | Tim Peters | 2006-01-24 | 1 | -4/+4 |
| | |||||
* | note the bsddb extension module changes. | Gregory P. Smith | 2006-01-24 | 1 | -1/+6 |
| | |||||
* | commits sourceforge patch #1407992 by neil.norwitz. | Gregory P. Smith | 2006-01-24 | 1 | -7/+7 |
| | | | | | | this fixes the bsddb db associate tests when compiled against BerkeleyDB 3.3 thru 4.1. 4.2 thru 4.4 already passed and still pass. | ||||
* | module list utility | Fredrik Lundh | 2006-01-24 | 1 | -0/+126 |
| | |||||
* | Patch #1349118: urllib2 now supports user:pass@ style proxy | Martin v. Löwis | 2006-01-24 | 3 | -6/+98 |
| | | | | | specifications, raises IOErrors when proxies for unsupported protocols are defined, and uses the https proxy on https redirections. | ||||
* | Support for BerkeleyDB 4.4 (tested against 4.4.20 as well as all the | Gregory P. Smith | 2006-01-24 | 2 | -5/+21 |
| | | | | | way back thru 3.2). This should be backported to the release24-maint branch. | ||||
* | Fix SF #1412837, compile failed with Watcom compiler | Neal Norwitz | 2006-01-24 | 1 | -5/+5 |
| | |||||
* | Repaired new test failures on Windows: | Tim Peters | 2006-01-23 | 1 | -3/+12 |
| | | | | | | | - The path separator isn't "/" on Windows. - Leaving behind a read-only file causes cascades of bogus failures on Windows. | ||||
* | Correct misspellings. | Georg Brandl | 2006-01-23 | 4 | -4/+4 |
| | |||||
* | Add markup to new section in codecs docs | Georg Brandl | 2006-01-23 | 1 | -41/+42 |
| | |||||
* | Correct typos and markup errors (Raymond, thanks for texcheck) | Georg Brandl | 2006-01-23 | 4 | -5/+5 |
| | |||||
* | Add two missing markup tags. | Georg Brandl | 2006-01-23 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-01-23 | 1 | -1/+1 |
| | |||||
* | Add \versionadded for sftp scheme | Georg Brandl | 2006-01-23 | 1 | -0/+1 |
| | |||||
* | Disable this test until I can test on big-endian machines and get passing | Neal Norwitz | 2006-01-23 | 1 | -1/+2 |
| | |||||
* | Test zipimporter a bit more. Also get working with -R :: option for finding ↵ | Neal Norwitz | 2006-01-23 | 1 | -4/+122 |
| | | | | ref leaks | ||||
* | Convenience function to remove a possibly non-existant file | Neal Norwitz | 2006-01-23 | 1 | -14/+10 |
| | |||||
* | Test getsignal() and some error conditions | Neal Norwitz | 2006-01-23 | 1 | -1/+23 |
| | |||||
* | Use unittest and make sure a few other cases don't crash | Neal Norwitz | 2006-01-23 | 1 | -2/+23 |
| | |||||
* | This should fix a mem leak on the Mac. Brett tested it. | Neal Norwitz | 2006-01-23 | 1 | -4/+3 |
| | |||||
* | Another typo. | Georg Brandl | 2006-01-22 | 1 | -1/+1 |
| | |||||
* | typo | Georg Brandl | 2006-01-22 | 1 | -1/+2 |
| | |||||
* | Correct several typos in libos.tex. Bug #1412227. | Georg Brandl | 2006-01-22 | 1 | -11/+11 |
| | |||||
* | Typo | Georg Brandl | 2006-01-22 | 1 | -1/+1 |
| | |||||
* | Remove reference to Grail and Netscape 2.0 from cgi docs. | Georg Brandl | 2006-01-22 | 1 | -2/+1 |
| | |||||
* | Misc. changes, including documenting the ability to specify a class ↵ | Vinay Sajip | 2006-01-22 | 1 | -29/+46 |
| | | | | attribute in Formatter configuration. Contributed by Shane Hathaway. | ||||
* | Fix typo | Walter Dörwald | 2006-01-21 | 1 | -1/+1 |
| | |||||
* | Bug #902075: urllib2 now handles "host:port" proxy specifications | Georg Brandl | 2006-01-21 | 2 | -9/+16 |
| | | | | Can/should this be backported? | ||||
* | _compile(): raise an exception if downcasting to SRE_CODE | Tim Peters | 2006-01-21 | 1 | -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 Peters | 2006-01-20 | 1 | -11/+11 |
| | |||||
* | Patch #1410998: remove "DOS" from os.py docstring | Georg Brandl | 2006-01-20 | 1 | -1/+1 |
| | |||||
* | Patch #1410783: add documentation links for static/classmethod | Georg Brandl | 2006-01-20 | 1 | -1/+9 |
| | |||||
* | Document supported schemes. | Georg Brandl | 2006-01-20 | 1 | -3/+8 |
| | |||||
* | Try to resolve the remaining webbrowser issues (backgrounding, local urls) | Georg Brandl | 2006-01-20 | 2 | -112/+206 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-01-20 | 1 | -1/+1 |
| | |||||
* | Added a test for the ability to specify a class attribute in Formatter ↵ | Vinay Sajip | 2006-01-20 | 1 | -16/+64 |
| | | | | configuration. Contributed by Shane Hathaway. | ||||
* | Added a test for the ability to specify a class attribute in Formatter ↵ | Vinay Sajip | 2006-01-20 | 1 | -0/+4 |
| | | | | configuration. Contributed by Shane Hathaway. | ||||
* | Added the ability to specify a class attribute in Formatter configuration. ↵ | Vinay Sajip | 2006-01-20 | 1 | -1/+21 |
| | | | | Contributed by Shane Hathaway. | ||||
* | Patch #1388073: Make unittest.TestCase easier to subclass | Georg Brandl | 2006-01-20 | 1 | -13/+13 |
| | |||||
* | typo | Georg Brandl | 2006-01-20 | 1 | -1/+1 |
| | |||||
* | Add markup to a "Python Standard Library" doc reference I added for bug 839585. | Georg Brandl | 2006-01-20 | 1 | -2/+3 |
| | |||||
* | Checkin the test of patch #1400181. | Georg Brandl | 2006-01-20 | 1 | -0/+14 |
| | |||||
* | Bug #1407902: Added support for sftp:// URIs to urlparse. | Georg Brandl | 2006-01-20 | 2 | -11/+13 |
| | |||||
* | Readd bug report note. | Georg Brandl | 2006-01-20 | 1 | -0/+6 |
| | |||||
* | Bug #1402224: Add warning to dl docs about crashes. | Georg Brandl | 2006-01-20 | 2 | -0/+6 |
| | |||||
* | Bug #1396471: Document that Windows' ftell() can return invalid | Georg Brandl | 2006-01-20 | 2 | -1/+8 |
| | | | | values for text files with UNIX-style line endings. | ||||
* | Bug #1371247: Update Windows LCIDs in locale.py. | Georg Brandl | 2006-01-20 | 2 | -34/+183 |
| | |||||
* | add missing version identification | Fred Drake | 2006-01-20 | 1 | -0/+2 |
| | |||||
* | Pass unquoted string to stat. | Martin v. Löwis | 2006-01-19 | 1 | -3/+3 |
| |