Martin v. Löwis
b96152c42e
Add getloadavg.
2002-12-31 13:20:15 +00:00
Martin v. Löwis
96a60e4af5
Patch #658927 : Add getctime to os.path.
...
Document that getatime and getmtime may return floats.
2002-12-31 13:11:54 +00:00
Martin v. Löwis
24a880b499
Patch #656590 : /dev/ptmx support for ptys.
2002-12-31 12:55:15 +00:00
Neal Norwitz
b70557f13d
Make sure zip_path is null-terminated, since it's on the stack
2002-12-31 12:45:12 +00:00
Martin v. Löwis
5c37a7717d
Document standard encodings.
2002-12-31 12:39:07 +00:00
Neal Norwitz
a8aed02f1e
Make sure zip_path is null-terminated, since it's on the stack
2002-12-31 12:35:41 +00:00
Neal Norwitz
ee711092eb
SmartCookie and SerialCookie were recently deprecated
2002-12-31 12:27:11 +00:00
Neal Norwitz
99448e5214
InterpolationSyntaxError was added in 2.3
2002-12-31 12:23:10 +00:00
Andrew MacIntyre
c70a8e411f
OS/2 EMX has no popen2.Popen3 even though bunzip2 is available
2002-12-31 11:28:22 +00:00
Andrew MacIntyre
fd07e7dda7
add list of expected skips for the OS/2 EMX port
2002-12-31 11:26:50 +00:00
Andrew MacIntyre
ab495052ad
DLL export definition refresh
2002-12-31 11:25:42 +00:00
Andrew MacIntyre
e52aa5ce48
add universal newline support to configuration
2002-12-31 11:24:43 +00:00
Andrew MacIntyre
d65778a9bf
whitespace cleanup
2002-12-31 11:23:50 +00:00
Andrew MacIntyre
7c90a8950a
getenv() replacement not required
2002-12-31 11:20:37 +00:00
Andrew MacIntyre
978697bf03
Build process updates:
...
- add new modules (zipimport, datetime, _random, bz2, _symtable)
- build pyexpat with expat sources from Python distribution
- regression test with and without compiled bytecode
2002-12-31 11:18:08 +00:00
Just van Rossum
01875ebaec
Broke the zipimport/PEP 302 news item into two separate items.
2002-12-31 10:22:38 +00:00
Just van Rossum
f8b6de168b
- added missing decref
...
- whitespace normalization
2002-12-31 09:51:59 +00:00
Fred Drake
b456e4f25b
Make sure PrettyPrinter methods that mirror the module-level
...
convenience functions isreadable() and isrecursive() work the same way
as the convenience functions.
2002-12-31 07:16:16 +00:00
Fred Drake
397b615056
- PrettyPrinter.isreadable(), .isrecursive():
...
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.
2002-12-31 07:14:18 +00:00
Fred Drake
5478219e11
Add a test that InterpolationError is constructed properly and raised
...
when expected. Only applies to the ConfigParser and SafeConfigParser
classes, not RawConfigParser.
2002-12-31 06:57:25 +00:00
Fred Drake
00dc5a93c1
ConfigParser._interpolate(): Pass the missing key to the
...
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.)
2002-12-31 06:55:41 +00:00
Fred Drake
a3661e1267
Update version numbers.
2002-12-31 05:51:05 +00:00
Guido van Rossum
2714706188
Phrase repair.
2002-12-31 04:41:38 +00:00
Guido van Rossum
8e7ec7cec8
Minor markup and spelling repair.
2002-12-31 04:39:05 +00:00
Neal Norwitz
b2501f4cd1
Since the *_Init() are private, prefix with _, suggested by Skip
2002-12-31 03:42:13 +00:00
Greg Ward
744f0fd655
Add build_namelists() to expose the OSS macros SOUND_DEVICE_LABELS and
...
SOUND_DEVICE_NAMES as 'control_labels' and 'control_names'.
2002-12-31 03:23:59 +00:00
Greg Ward
58ae13c1b2
Rename the parameter 'xp' in several methods to 'self', since that's
...
what it is.
2002-12-31 03:07:21 +00:00
Greg Ward
499b73e1cd
For symmetry with the mixer interface, rename oss_t to oss_audio_t and
...
OSSType to OSSAudioType.
2002-12-31 03:04:52 +00:00
Greg Ward
da1cacb38b
Add a bunch of comments to clearly delineate sections of the code.
2002-12-31 03:02:23 +00:00
Greg Ward
2d6f9a9a86
Yet another renaming of some mixer methods:
...
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 ...
2002-12-31 02:54:43 +00:00
Andrew M. Kuchling
5095a47408
Add a hurriedly-written section on the datetime module
2002-12-31 02:48:59 +00:00
Guido van Rossum
9a2eda5ea5
Dedent a paragraph that was accidentally aligned with a preceding
...
nested list.
2002-12-31 02:12:42 +00:00
Tim Peters
735950b3c0
Bump the Windows build # for 2.3a1.
2002-12-31 02:09:08 +00:00
Guido van Rossum
f122688b3f
Various updates to the version number, on the eve of the 2.3a1 release.
2002-12-31 01:50:07 +00:00
Andrew M. Kuchling
974ab9d865
Add lots of items.
...
The only thing missing now is the new date/time stuff.
2002-12-31 01:20:30 +00:00
Guido van Rossum
0146f419b4
Fix name error, found by pychecker.
2002-12-31 01:08:35 +00:00
Neal Norwitz
7b8e35ed7d
Fix SF #639945 , 64-bit bug on AIX
...
I can't test this on the snake farm (no aix box is working).
This change works for the submitter seems correct.
Can anybody test this on 32- and 64- bit AIX?
2002-12-31 00:06:24 +00:00
Neal Norwitz
d8b5e3fda1
Tix update from Mike Clarkson (maintainer)
2002-12-30 23:52:01 +00:00
Fred Drake
8d5dd98a2e
- added InterpolationSyntaxError to __all__
...
- added docstring to exceptions
2002-12-30 23:51:45 +00:00
Fred Drake
81e4aa7054
- re-mark ESR's warning about extended registry syntax
...
- document InterpolationSyntaxError
2002-12-30 23:50:19 +00:00
Neal Norwitz
ce1d944b6b
Add missing InterpolationSyntaxError.
...
XXX Not sure this is correct.
2002-12-30 23:38:47 +00:00
Neal Norwitz
6ec0a8ab93
sys was already imported, remove second import
2002-12-30 23:36:02 +00:00
Fred Drake
a872595f31
- prefer "import ... as" to "import / (assignments) / del" for most things
...
- when the thread module isn't available, subsequent attempts to import
threading should not suceed
2002-12-30 23:32:50 +00:00
Greg Ward
f05aa10eae
Rename more mixer methods: getrecsrc() -> get_recsrc(),
...
setrecsrc() -> set_recsrc().
2002-12-30 23:19:32 +00:00
Jack Jansen
5681acbf94
Added zipimport and _random module.
2002-12-30 23:11:30 +00:00
Jack Jansen
fb08b4c704
Changed sys.path initializer because of addition of Lib/plat-mac and a few minor
...
things.
2002-12-30 23:07:44 +00:00
Jack Jansen
5eaeaf9174
Added casts to forestall warnings with MetroWerks.
2002-12-30 23:06:14 +00:00
Jack Jansen
acda3394bb
Updated the expected skips for MacOSX.
2002-12-30 23:03:13 +00:00
Jack Jansen
06f0cef1ca
Skip this test on MacOSX: the locale support is too minimal to make
...
it pass.
2002-12-30 23:02:55 +00:00
Fred Drake
66162de80d
Add entries for the dummy_thread and dummy_threading modules.
2002-12-30 23:01:14 +00:00