| Commit message (Expand) | Author | Age | Files | Lines |
* | Silence cast warnings for Tcl 8.3. | Martin v. Löwis | 2002-12-30 | 1 | -6/+12 |
|
|
* | Patch 659834 by Magnus Lie Hetland: | Guido van Rossum | 2002-12-30 | 1 | -0/+4 |
|
|
* | Untabify. | Greg Ward | 2002-12-30 | 1 | -106/+106 |
|
|
* | Whitespace fixes to conform to coding standards. | Greg Ward | 2002-12-30 | 1 | -18/+18 |
|
|
* | Comment fix. | Greg Ward | 2002-12-30 | 1 | -9/+2 |
|
|
* | Rename some mixer methods: | Greg Ward | 2002-12-30 | 1 | -16/+16 |
|
|
* | Remove 'x_' prefix from oss_t and oss_mixer_t struct members. | Greg Ward | 2002-12-30 | 1 | -57/+58 |
|
|
* | SF patch 658251: Install a C implementation of the Mersenne Twister as the | Raymond Hettinger | 2002-12-29 | 1 | -0/+528 |
|
|
* | Demonstrate use of PyType_Ready() in the example. | Raymond Hettinger | 2002-12-29 | 1 | -3/+5 |
|
|
* | SF patch #659536: Use PyArg_UnpackTuple where possible. | Raymond Hettinger | 2002-12-29 | 2 | -11/+11 |
|
|
* | Apparently FreeBSD enables some HW floating-point exceptions by default. | Tim Peters | 2002-12-28 | 1 | -0/+15 |
|
|
* | Gracefully delay runtime error up to 1s. Add .willdispatch(). | Martin v. Löwis | 2002-12-28 | 1 | -12/+31 |
|
|
* | Patch #657889: Implement posix.getloadavg. | Martin v. Löwis | 2002-12-27 | 1 | -0/+25 |
|
|
* | And put back a little code duplication, in the form of asserts. | Tim Peters | 2002-12-27 | 1 | -0/+3 |
|
|
* | Squash recently-introduced code duplication. | Tim Peters | 2002-12-27 | 1 | -66/+37 |
|
|
* | Make comparison and subtraction of aware objects ignore tzinfo if the | Tim Peters | 2002-12-27 | 1 | -27/+64 |
|
|
* | Implemented datetime.astimezone() and datetimetz.astimezone(). | Tim Peters | 2002-12-25 | 1 | -18/+84 |
|
|
* | Add an XXX comment about relative imports. | Guido van Rossum | 2002-12-24 | 1 | -1/+2 |
|
|
* | Implemented .replace() methods for date, datetime, datetimetz, time and | Tim Peters | 2002-12-24 | 1 | -26/+154 |
|
|
* | Squashed compiler warnings by adding casts, making sure prototypes are in | Jack Jansen | 2002-12-23 | 2 | -1/+5 |
|
|
* | call_utc_tzinfo_method(): Got rid of the label and the gotos. | Tim Peters | 2002-12-23 | 1 | -7/+2 |
|
|
* | I give up: unless I write my own strftime by hand, datetime just can't | Tim Peters | 2002-12-22 | 1 | -0/+25 |
|
|
* | Python's strftime implementation does strange things with the year, | Tim Peters | 2002-12-22 | 1 | -1/+5 |
|
|
* | classify_object(): Renamed more meaningfully, to classify_utcoffset(). | Tim Peters | 2002-12-22 | 1 | -20/+17 |
|
|
* | Implemented a Wiki suggestion: | Tim Peters | 2002-12-22 | 1 | -76/+123 |
|
|
* | Use wcscoll for _locale.strcoll if available. | Martin v. Löwis | 2002-12-21 | 1 | -5/+79 |
|
|
* | format_utcoffset(): The natural type of the buflen arg is size_t, so | Tim Peters | 2002-12-20 | 1 | -10/+8 |
|
|
* | Fix another long vs int mismatch. test_datetime now passes on alpha | Neal Norwitz | 2002-12-19 | 1 | -3/+3 |
|
|
* | Fixed typo in string. | Tim Peters | 2002-12-19 | 1 | -5/+20 |
|
|
* | Fix crash on alphas due to mismatch between 'l' format and int variables. | Neal Norwitz | 2002-12-19 | 1 | -1/+1 |
|
|
* | delta_str(): Purged last uses of sprintf (in favor of PyOS_snprintf). | Tim Peters | 2002-12-18 | 1 | -10/+25 |
|
|
* | "time_second" is apparently a #define on MacOSX. Renamed the (static) | Jack Jansen | 2002-12-17 | 1 | -2/+2 |
|
|
* | Fix GCC warnings. It turns out two out of three pointed to real bugs! | Guido van Rossum | 2002-12-16 | 1 | -3/+3 |
|
|
* | datetime escapes the sandbox. The Windows build is all set. I leave it | Tim Peters | 2002-12-16 | 1 | -0/+5075 |
|
|
* | Apply SF patch 652930: Add optional base argument to math.log(x[, base]). | Raymond Hettinger | 2002-12-14 | 1 | -15/+47 |
|
|
* | execve(), spawnve(): add some extra sanity checking to env; | Guido van Rossum | 2002-12-13 | 1 | -18/+50 |
|
|
* | We need macglue on MacPython-OS9 too. | Jack Jansen | 2002-12-13 | 1 | -1/+1 |
|
|
* | Always initialize objc. | Martin v. Löwis | 2002-12-12 | 1 | -1/+1 |
|
|
* | Patch to make _codecs a builtin module. This is necessary since | Marc-André Lemburg | 2002-12-12 | 2 | -2/+2 |
|
|
* | Typo fix. | Greg Ward | 2002-12-12 | 1 | -1/+1 |
|
|
* | Support threads-enabled Tcl installations. | Martin v. Löwis | 2002-12-12 | 1 | -118/+525 |
|
|
* | This is not used anymore. | Martin v. Löwis | 2002-12-11 | 2 | -1003/+0 |
|
|
* | Add OSS mixer interface (from Nicholas FitzRoy-Dale <wzdd@lardcave.net>): | Greg Ward | 2002-12-11 | 1 | -0/+267 |
|
|
* | Prepare for the coming mixer support patch: change _do_ioctl_0() and | Greg Ward | 2002-12-11 | 1 | -14/+14 |
|
|
* | Finish expunging the 'linuxaudiodev' name: | Greg Ward | 2002-12-11 | 1 | -55/+55 |
|
|
* | Patch #650422: Use Posix AF_ constants instead of PF_ ones. | Martin v. Löwis | 2002-12-11 | 1 | -5/+7 |
|
|
* | Remove C++ comment. Silence unsigned char* cast warning. | Martin v. Löwis | 2002-12-07 | 1 | -2/+2 |
|
|
* | Remove C++ comment. | Martin v. Löwis | 2002-12-07 | 1 | -1/+1 |
|
|
* | A patch from Kevin Jacobs, plugging several leaks discovered when | Tim Peters | 2002-12-07 | 1 | -5/+10 |
|
|
* | Don't include <ioctl.h> unless on __VMS. | Martin v. Löwis | 2002-12-06 | 1 | -1/+3 |
|
|