Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add markup for time object. | Raymond Hettinger | 2002-12-31 | 1 | -22/+23 |
| | | | | | Cleanup whitespace. Fix unbalanced parenthesis. | ||||
* | moving modulefinder.py to the standard library | Just van Rossum | 2002-12-31 | 1 | -0/+0 |
| | |||||
* | Fix compilation errors on HPUX11 | Neal Norwitz | 2002-12-31 | 1 | -3/+3 |
| | |||||
* | Whitespace Normalization | Kurt B. Kaiser | 2002-12-31 | 23 | -322/+306 |
| | |||||
* | Removed the now-untrue (or soon-to-be untrue) part of the astimezone() | Tim Peters | 2002-12-31 | 1 | -10/+7 |
| | | | | | | | | docs. Replaced it with an XXX block, because the hoped-for treatment of DST endcases remains unclear (Guido doesn't really like raising an exception when it's impossible to deliver a correct result, but so far I have no way in hand to consistently deliver a defined incorrect result either). | ||||
* | removed unused get_short() function | Just van Rossum | 2002-12-31 | 1 | -14/+0 |
| | |||||
* | Set the release date. | Guido van Rossum | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Document the new ,netrc awareness in nntplib. | Eric S. Raymond | 2002-12-31 | 1 | -2/+3 |
| | |||||
* | Barry raised reasonable objections to the macro name \mimeheader, so | Fred Drake | 2002-12-31 | 1 | -1/+1 |
| | | | | we'll simply revert to \mailheader since there's no other good name. | ||||
* | - correct the deprecation markups so this formats again | Fred Drake | 2002-12-31 | 1 | -9/+7 |
| | | | | - some minor cleanups | ||||
* | Restore signalhandler in case of error. Fix type of signal handler. | Martin v. Löwis | 2002-12-31 | 1 | -3/+9 |
| | |||||
* | Complete the markup for timedelta objects. | Raymond Hettinger | 2002-12-31 | 1 | -36/+28 |
| | | | | Fix a curly brace that should have been a paren. | ||||
* | Add posix.loadavg() | Andrew M. Kuchling | 2002-12-31 | 1 | -8/+7 |
| | | | | Add some times | ||||
* | Revert SF patch 659809 -- it causes double options that can cause breakage. | Guido van Rossum | 2002-12-31 | 2 | -6/+3 |
| | |||||
* | Use the name (path) specified in the parameter list | Neal Norwitz | 2002-12-31 | 1 | -4/+4 |
| | |||||
* | Add getloadavg. | Martin v. Löwis | 2002-12-31 | 1 | -2/+2 |
| | |||||
* | Patch #658927: Add getctime to os.path. | Martin v. Löwis | 2002-12-31 | 6 | -6/+30 |
| | | | | Document that getatime and getmtime may return floats. | ||||
* | Patch #656590: /dev/ptmx support for ptys. | Martin v. Löwis | 2002-12-31 | 6 | -10/+76 |
| | |||||
* | Make sure zip_path is null-terminated, since it's on the stack | Neal Norwitz | 2002-12-31 | 1 | -0/+1 |
| | |||||
* | Document standard encodings. | Martin v. Löwis | 2002-12-31 | 1 | -0/+343 |
| | |||||
* | Make sure zip_path is null-terminated, since it's on the stack | Neal Norwitz | 2002-12-31 | 1 | -0/+1 |
| | |||||
* | SmartCookie and SerialCookie were recently deprecated | Neal Norwitz | 2002-12-31 | 1 | -0/+2 |
| | |||||
* | InterpolationSyntaxError was added in 2.3 | Neal Norwitz | 2002-12-31 | 1 | -0/+1 |
| | |||||
* | OS/2 EMX has no popen2.Popen3 even though bunzip2 is available | Andrew MacIntyre | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | add list of expected skips for the OS/2 EMX port | Andrew MacIntyre | 2002-12-31 | 1 | -0/+28 |
| | |||||
* | DLL export definition refresh | Andrew MacIntyre | 2002-12-31 | 1 | -18/+73 |
| | |||||
* | add universal newline support to configuration | Andrew MacIntyre | 2002-12-31 | 1 | -0/+3 |
| | |||||
* | whitespace cleanup | Andrew MacIntyre | 2002-12-31 | 1 | -16/+21 |
| | |||||
* | getenv() replacement not required | Andrew MacIntyre | 2002-12-31 | 1 | -16/+0 |
| | |||||
* | Build process updates: | Andrew MacIntyre | 2002-12-31 | 1 | -9/+47 |
| | | | | | | - add new modules (zipimport, datetime, _random, bz2, _symtable) - build pyexpat with expat sources from Python distribution - regression test with and without compiled bytecode | ||||
* | Broke the zipimport/PEP 302 news item into two separate items. | Just van Rossum | 2002-12-31 | 1 | -9/+12 |
| | |||||
* | - added missing decref | Just van Rossum | 2002-12-31 | 1 | -4/+5 |
| | | | | - whitespace normalization | ||||
* | Make sure PrettyPrinter methods that mirror the module-level | Fred Drake | 2002-12-31 | 1 | -3/+27 |
| | | | | | convenience functions isreadable() and isrecursive() work the same way as the convenience functions. | ||||
* | - PrettyPrinter.isreadable(), .isrecursive(): | Fred Drake | 2002-12-31 | 1 | -21/+16 |
| | | | | | | | Pass the right number of args to .format(). (Caught by pychecker.) - Protect the global namespace more carefully. - Don't use the types module now that we don't need to. | ||||
* | Add a test that InterpolationError is constructed properly and raised | Fred Drake | 2002-12-31 | 1 | -2/+20 |
| | | | | | when expected. Only applies to the ConfigParser and SafeConfigParser classes, not RawConfigParser. | ||||
* | ConfigParser._interpolate(): Pass the missing key to the | Fred Drake | 2002-12-31 | 1 | -4/+3 |
| | | | | | | | | | InterpolationError constructor, not the KeyError exception itself. (Caught by the new InterpolationError test.) SafeConfigParser._interpolate_some(): Pass the right number of arguments to the InterpolationError constructor. (Caught by pychecker.) | ||||
* | Update version numbers. | Fred Drake | 2002-12-31 | 2 | -2/+2 |
| | |||||
* | Phrase repair. | Guido van Rossum | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Minor markup and spelling repair. | Guido van Rossum | 2002-12-31 | 1 | -2/+3 |
| | |||||
* | Since the *_Init() are private, prefix with _, suggested by Skip | Neal Norwitz | 2002-12-31 | 5 | -6/+6 |
| | |||||
* | Add build_namelists() to expose the OSS macros SOUND_DEVICE_LABELS and | Greg Ward | 2002-12-31 | 1 | -0/+45 |
| | | | | SOUND_DEVICE_NAMES as 'control_labels' and 'control_names'. | ||||
* | Rename the parameter 'xp' in several methods to 'self', since that's | Greg Ward | 2002-12-31 | 1 | -23/+23 |
| | | | | what it is. | ||||
* | For symmetry with the mixer interface, rename oss_t to oss_audio_t and | Greg Ward | 2002-12-31 | 1 | -29/+29 |
| | | | | OSSType to OSSAudioType. | ||||
* | Add a bunch of comments to clearly delineate sections of the code. | Greg Ward | 2002-12-31 | 1 | -1/+28 |
| | |||||
* | Yet another renaming of some mixer methods: | Greg Ward | 2002-12-31 | 1 | -9/+9 |
| | | | | | | | | | | | | | | | devices(), stereodevices(), recdevices() -> controls(), stereocontrols(), reccontrols() Based on recommendation of Hannu Savolainen <hannu@opensound.com>: The right term to use for things like bass/treble/mic/vol/etc is "control". "Device" refers to different mixer devices (/dev/mixer0 to /dev/mixerN). "Channel" cannot be used because it refers to mono/stereo/multich channels. In fact most mixer controls have left/right channels so ... | ||||
* | Add a hurriedly-written section on the datetime module | Andrew M. Kuchling | 2002-12-31 | 1 | -6/+50 |
| | |||||
* | Dedent a paragraph that was accidentally aligned with a preceding | Guido van Rossum | 2002-12-31 | 1 | -8/+8 |
| | | | | nested list. | ||||
* | Bump the Windows build # for 2.3a1. | Tim Peters | 2002-12-31 | 2 | -1/+3 |
| | |||||
* | Various updates to the version number, on the eve of the 2.3a1 release. | Guido van Rossum | 2002-12-31 | 3 | -15/+16 |
| | |||||
* | Add lots of items. | Andrew M. Kuchling | 2002-12-31 | 1 | -11/+192 |
| | | | | The only thing missing now is the new date/time stuff. |