Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Renamed the Mac toolbox modules to have an initial _ in their name. | Jack Jansen | 2001-08-23 | 23 | -0/+41479 |
| | |||||
* | Mac toolbox modules have gotten an _ prepended to their name. | Jack Jansen | 2001-08-23 | 1 | -58/+58 |
| | |||||
* | The MacOS toolbox modules have acquired an _ in front of their name. Normal ↵ | Jack Jansen | 2001-08-23 | 26 | -172/+178 |
| | | | | usage is through a wrapper module (without underscore) which lives in the Carbon package. | ||||
* | SF patch #454553 by Walter Dörwald: auto-guess content-type header for | Guido van Rossum | 2001-08-23 | 2 | -6/+9 |
| | | | | ftp urls. | ||||
* | Don't make even the _slightest_ modification between test and checkin, | Jack Jansen | 2001-08-23 | 1 | -1/+1 |
| | | | | or you will break something:-) | ||||
* | The MacOS module may be available on Mac OS X, but it doesn't have a ↵ | Jack Jansen | 2001-08-23 | 1 | -1/+1 |
| | | | | SchedParams() method, and there's no need to call it anyway. | ||||
* | Turn OverflowWarning into an error locally, in order to make the | Guido van Rossum | 2001-08-23 | 1 | -0/+3 |
| | | | | OverflowError test succeed. | ||||
* | Ignore OverflowWarning by default. To enable the warning, use | Guido van Rossum | 2001-08-23 | 1 | -0/+1 |
| | | | | | | | | python -Wdefault or python -Wdefault::OverflowWarning | ||||
* | Change all case where we used to raise OverflowError to issue a | Guido van Rossum | 2001-08-23 | 1 | -56/+88 |
| | | | | warning and then redo the operation using long ints. | ||||
* | When an inlined operation on two small ints causes overflow, don't | Guido van Rossum | 2001-08-23 | 1 | -32/+24 |
| | | | | | raise the exception here -- call the generic function (which may convert the arguments to long and try again). | ||||
* | Introduce OverflowWarning -- to be issued when short int operations | Guido van Rossum | 2001-08-23 | 2 | -0/+8 |
| | | | | are overflowing and a long int operation is substituted. | ||||
* | Add pynche's top-level txt files to Windows installer -- I don't believe | Tim Peters | 2001-08-22 | 1 | -1/+7 |
| | | | | we've *ever* installed them! | ||||
* | "The usual" post-release fiddling. | Tim Peters | 2001-08-22 | 3 | -5/+23 |
| | |||||
* | Add an item about Tim's new installer. This didn't make it into the | Barry Warsaw | 2001-08-22 | 1 | -0/+3 |
| | | | | 2.2a2 release, but it's still worth mentioning. | ||||
* | Merge changes from r22a2-branch back into trunk. Also, change patch | Barry Warsaw | 2001-08-22 | 5 | -18/+36 |
| | | | | level to 2.2a2+ | ||||
* | indicate that mktime is platform-dependent. See SF bug 434143. | Skip Montanaro | 2001-08-22 | 1 | -1/+2 |
| | |||||
* | indicate that the years for which the calendar function will work are | Skip Montanaro | 2001-08-22 | 1 | -1/+2 |
| | | | | platform dependent. See SF bug 434143. | ||||
* | make the gettmarg error message more correct by making it more vague ;-) | Skip Montanaro | 2001-08-22 | 1 | -1/+1 |
| | | | | see SF bug 434143, part of which this addresses | ||||
* | More NEWS for 2.2a2. | Barry Warsaw | 2001-08-22 | 1 | -2/+25 |
| | |||||
* | Added a note about --enable-framework on Mac OS X. | Jack Jansen | 2001-08-21 | 1 | -0/+5 |
| | |||||
* | These long dead files somehow got revived. Killed them (but for how | Jack Jansen | 2001-08-21 | 4 | -654/+0 |
| | | | | long? :-). | ||||
* | This file has been dead for aeons. I have no idea how it suddenly | Jack Jansen | 2001-08-21 | 1 | -2/+0 |
| | | | | surfaced again. | ||||
* | Enhancements: | Ka-Ping Yee | 2001-08-21 | 1 | -93/+111 |
| | | | | | | | | | | - file URL now starts with "file://" (standard) rather than "file:" - new optional argument 'context' to enable() - repeated variable names don't have their values shown twice - dotted attributes are shown; missing attributes handled reasonably - highlight the whole logical line even if it has multiple physical lines - use nice generator interface to tokenize - formatting fixed so that it looks good in lynx, links, and w3m too | ||||
* | This is supposed to help configure better sort out the various libdb | Skip Montanaro | 2001-08-21 | 1 | -1/+7 |
| | | | | | incarnations. It's probably not quite sufficient, but should be better than the status quo... | ||||
* | A test of SSL support, using a roundabout method suggested by Guido. | Barry Warsaw | 2001-08-20 | 1 | -0/+13 |
| | | | | However, this is only enabled with regrtest's --use=network switch. | ||||
* | Use test_support.requires() to decide whether additional largefile | Barry Warsaw | 2001-08-20 | 1 | -7/+8 |
| | | | | tests should be run. | ||||
* | Removed --have-resources flag in favor of the more granular -u/--use | Barry Warsaw | 2001-08-20 | 1 | -22/+61 |
| | | | | | | | | | | | | | | | | | | | flag, which specifies external or resource intensive tests to perform. This is used by test_largefile and test_socket_ssl. -u/--use takes a comma separated list of flags, currently supported: largefile, network. usage(): New function. Note that the semantics of main() have changed slightly; instead of returning an error code, it raises a SystemExit (via sys.exit()) with the given error code. main(): use_large_resources => use_resources Also, added support for long-option alternative to the short options. _expectations: Added test_socket_ssl to the list of expectedly skipped tests. | ||||
* | use_large_resources => use_resources | Barry Warsaw | 2001-08-20 | 1 | -2/+8 |
| | | | | | | | | requires(): New function which can be used to `assert' that a specific -u/--use resource flag is present. Raises a TestSkipped if not. This is used in test_largefile and test_socket_ssl to enable external or resource consumptive tests that are normally disabled. | ||||
* | SSL_dealloc(): Apply the change suggested in SF bug #425370 which | Barry Warsaw | 2001-08-20 | 1 | -1/+1 |
| | | | | | changes the order of the free calls to be the reverse of the alloc calls. Closes that bug. | ||||
* | Whitespace normalization. | Tim Peters | 2001-08-20 | 2 | -3/+3 |
| | |||||
* | Test failed because these was no expected-output file, but always printed | Tim Peters | 2001-08-20 | 1 | -5/+8 |
| | | | | | | | to stdout. Repaired by not printing at all except in verbose mode. Made the test about 6x faster -- envelope analysis showed it took time proportional to the square of the # of tasks. Now it's linear. | ||||
* | New \grammartoken markup, similar to \token but allowed everywhere. | Fred Drake | 2001-08-20 | 2 | -0/+6 |
| | |||||
* | Add another name. | Fred Drake | 2001-08-20 | 1 | -0/+1 |
| | |||||
* | Deal more appropriately with bare ampersands and pointy brackets; this | Fred Drake | 2001-08-20 | 2 | -19/+39 |
| | | | | | | | | module has to deal with "class" HTML-as-deployed as well as XHTML, so we cannot be as strict as XHTML allows. This closes SF bug #453059, but uses a different fix than suggested in the bug comments. | ||||
* | Add test case to cover multiple future statements on separate lines of | Jeremy Hylton | 2001-08-20 | 1 | -0/+11 |
| | | | | a module. | ||||
* | Fix SF bug [ #450245 ] Error in parsing future stmts | Jeremy Hylton | 2001-08-20 | 3 | -0/+5 |
| | | | | | Add test case to cover multiple future statements on separate lines of a module. | ||||
* | Fix SF bug [ #450245 ] Error in parsing future stmts | Jeremy Hylton | 2001-08-20 | 1 | -3/+18 |
| | | | | | | | | | Check return value from future_parse() in for loop for file_input to accomodate multiple future statements on separate lines. Add several comments explaining how the code works. Remove out-dated XXX comment. | ||||
* | Committing and closing SF patch #403671 by Finn Bock to help Jython | Barry Warsaw | 2001-08-20 | 1 | -11/+31 |
| | | | | pass these tests. | ||||
* | add a few test cases for threading module. | Skip Montanaro | 2001-08-20 | 1 | -0/+52 |
| | |||||
* | Added new BoundedSemaphore class. Closes bug 452836. | Skip Montanaro | 2001-08-20 | 1 | -0/+15 |
| | |||||
* | Silence warnings during test_os | Jeremy Hylton | 2001-08-20 | 1 | -0/+5 |
| | |||||
* | Split "Extending & Embedding" into separate files, one per chapter. | Fred Drake | 2001-08-20 | 7 | -3158/+3160 |
| | |||||
* | It will always be a string, because it is created just before this call. | Jeremy Hylton | 2001-08-20 | 1 | -1/+1 |
| | |||||
* | Added documentation for BoundedSemaphore(), contributed by Skip Montanaro. | Fred Drake | 2001-08-20 | 1 | -2/+40 |
| | | | | This closes SF patch #452836. | ||||
* | Document PyTuple_GET_SIZE(), removing confusing sentence from PyDict_Copy() | Fred Drake | 2001-08-20 | 1 | -2/+7 |
| | | | | | | description. This fixes SF bug #453111. | ||||
* | Oops, these compatibility modules were missing. Which went unnoticed because ↵ | Jack Jansen | 2001-08-20 | 8 | -0/+8 |
| | | | | their companions had been put in the wrong place. | ||||
* | Various toolbox modules were generated in lib-dynload accidentally | Jack Jansen | 2001-08-20 | 1 | -3/+3 |
| | | | | in stead of in Carbon. Fixed. | ||||
* | Clean up some argument profiles, enrich the docstring. | Eric S. Raymond | 2001-08-20 | 2 | -32/+41 |
| | |||||
* | Oops, this file shouldn't have been removed. | Jack Jansen | 2001-08-20 | 1 | -0/+1 |
| | |||||
* | The destination folder is now :Lib:lib-dynload | Jack Jansen | 2001-08-19 | 1 | -0/+0 |
| |