Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | initwinsound(): this no longer compiled on Windows, | Tim Peters | 2006-01-19 | 1 | -1/+2 |
| | | | | because code snuck in between auto declarations. | ||||
* | initmsvcrt(): This no longer compiled on Windows, because | Tim Peters | 2006-01-19 | 1 | -1/+2 |
| | | | | a recent change inserted code before an auto declaration. | ||||
* | Add a more informative error message for test_float_parsing so the failing | Brett Cannon | 2006-01-19 | 1 | -2/+4 |
| | | | | locale can be known. | ||||
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 80 | -0/+159 |
| | | | | Probably should be backported. | ||||
* | Quote the path to the executable before invoking system(). | Tim Peters | 2006-01-18 | 1 | -3/+4 |
| | |||||
* | Add missing make_buildinfo.c. | Martin v. Löwis | 2006-01-18 | 1 | -0/+87 |
| | |||||
* | Generate getbuildinfo.o each time the linker is invoked; | Martin v. Löwis | 2006-01-18 | 4 | -12/+151 |
| | | | | | try to generate SVNVERSION information if subwcrev.exe can be found. | ||||
* | fixed example: | Fredrik Lundh | 2006-01-17 | 1 | -11/+19 |
| | | | | adding missing import, handle_close, test code, etc. | ||||
* | SF bug #1347874; FeedParser does not comply with RFC2822. | Barry Warsaw | 2006-01-17 | 2 | -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 long | Neal Norwitz | 2006-01-17 | 1 | -1/+1 |
| | |||||
* | Update email.Message.get_filename() documentation. | Barry Warsaw | 2006-01-17 | 1 | -4/+5 |
| | |||||
* | Ported 42075 from release23-maint branch. | Barry Warsaw | 2006-01-17 | 4 | -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 Sajip | 2006-01-16 | 1 | -125/+142 |
| | |||||
* | Changes due to added test for fileConfig contributed by Shane Hathaway. | Vinay Sajip | 2006-01-16 | 1 | -0/+6 |
| | |||||
* | Added test for fileConfig. Contributed by Shane Hathaway. | Vinay Sajip | 2006-01-16 | 1 | -1/+101 |
| | |||||
* | Exceptions raised during renaming in rotating file handlers are now passed ↵ | Vinay Sajip | 2006-01-16 | 1 | -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 Sajip | 2006-01-16 | 1 | -2/+12 |
| | | | | to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised). | ||||
* | TimedRotatingFileHandler now calculates next rollover from previous rollover ↵ | Vinay Sajip | 2006-01-16 | 1 | -1/+1 |
| | | | | rather than current time. | ||||
* | Fixed bug in time-to-midnight calculation. | Vinay Sajip | 2006-01-16 | 1 | -3/+6 |
| | |||||
* | refresh every 12 hours for crazy people like me that keep the page up | Neal Norwitz | 2006-01-16 | 1 | -1/+5 |
| | |||||
* | Get socketmodule to build after adding netlink support. | Neal Norwitz | 2006-01-16 | 2 | -0/+5 |
| | |||||
* | Add recent item | Andrew M. Kuchling | 2006-01-15 | 1 | -0/+8 |
| | |||||
* | the implementation uses ZipImportError, not ZipImporterError... | Fredrik Lundh | 2006-01-15 | 1 | -1/+1 |
| | |||||
* | the implementation uses ZipImportError, not ZipImporterError... | Fredrik Lundh | 2006-01-15 | 1 | -1/+1 |
| | |||||
* | typo | Fredrik Lundh | 2006-01-15 | 1 | -1/+1 |
| | |||||
* | Remove buildno. | Martin v. Löwis | 2006-01-15 | 2 | -177/+0 |
| | |||||
* | Patch #1396093: Further .vcproj cleanups | Martin v. Löwis | 2006-01-15 | 2 | -2838/+9 |
| | |||||
* | Remove dots in \version{changed,added} argument and | Georg Brandl | 2006-01-15 | 7 | -12/+12 |
| | | | | correct argument order. | ||||
* | Change build format of netlink addresses. | Martin v. Löwis | 2006-01-15 | 1 | -1/+1 |
| | |||||
* | Remove extra period at end. | Neal Norwitz | 2006-01-15 | 1 | -1/+1 |
| | |||||
* | Alphabetize some names and remove a dupe | Neal Norwitz | 2006-01-14 | 1 | -16/+15 |
| | |||||
* | Patch #1103116: AF_NETLINK sockets basic support. | Martin v. Löwis | 2006-01-14 | 8 | -6/+160 |
| | |||||
* | added kjohnson to the ACKS list | Fredrik Lundh | 2006-01-14 | 1 | -0/+1 |
| | |||||
* | collected my segfaulting Python examples from the SF trackers | Armin Rigo | 2006-01-14 | 8 | -0/+99 |
| | | | | (is the purpose of the crashers directory to scare people? :-) | ||||
* | Fix typo | Neal Norwitz | 2006-01-14 | 1 | -1/+1 |
| |