summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* test is no longer neededBarry Warsaw1997-01-162-32/+0
|
* Opps. Added tests for the last two methods that were missing fromRoger E. Masse1997-01-151-1/+11
| | | | the test program: 'grey2rgb' and 'rgb2grey'
* Modified to use 'rgbimg' instead of the SGI specific 'imgfile' for readingRoger E. Masse1997-01-151-24/+58
| | | | | | | | the imagefiles and converting tham to a format suitable for imageop. Also added two more tests 'rgb2rgb8' and 'rgb82rgb' which remove the dependence on the file 'greytest.rgb'. Note: test_imgfile.py still uses 'greytest.rgb'
* Irix 6 specific files -- thanks Sjoerd!Guido van Rossum1997-01-1558-0/+10664
|
* "ported" Guido's embedding demo to the mac, and wrote some minimalJack Jansen1997-01-155-1/+278
| | | | notes on embedding on the mac.
* Added PyMac_Initialize() routine, to be used by embedding programs (inJack Jansen1997-01-155-516/+532
| | | | stead of standard Py_Initialize(), which it calls).
* Describe new ("unsigned") behavior of hex() and oct().Guido van Rossum1997-01-142-4/+24
|
* Removed _xdr moduleBarry Warsaw1997-01-141-1/+0
|
* test(): close the pipe, just to shut up Purify.Barry Warsaw1997-01-141-0/+1
|
* Eliminated gcc -Wall complaints:Barry Warsaw1997-01-141-26/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Quieted gcc -Wall by removing unused local variables. - Added some choice parentheses around assignments in conditional tests. - Removed an unused (and seemingly unreachable) err label in load_short_binstring(). - in Unpickler_load(), removed \. in string format. - init_stuff() was declared to return an int, but had these problems: - it was returning NULL instead of 0 or 1 in some cases - it was falling of the end of the routine without returning anything - the call of init_stuff() in initcPickle() was never checking the return value anyway. I changed all this by returning 1 in the case of errors, 0 when no error occurred. Then in initcPickle(), if init_stuff() returns non-zero, I call Py_FatalError(). Suppressing my urge to reformat according to Python coding standards! :-)
* Quieted gcc -Wall by removing unused local variables.Barry Warsaw1997-01-141-5/+9
| | | | | Suppressing my urge to reformat according to Python coding standards! :-)
* Quieted gcc -Wall by removing unused local variables.Barry Warsaw1997-01-141-2/+0
|
* Formatting.Barry Warsaw1997-01-141-18/+17
|
* Obsolete, now that xdrlib.py uses the new-and-improved struct module.Barry Warsaw1997-01-141-187/+0
|
* Raise ConversionError instances the new fangled way, e.g.:Barry Warsaw1997-01-141-3/+4
| | | | | | raise ConversionError, msg where `msg' is passed as the argument to the constructor.
* Increased buffer sizes used by hex() and oct() -- on 64-bit or 128-bitGuido van Rossum1997-01-141-2/+2
| | | | machines, the string may get longer than 20 characters!
* Output for test of the timing moduleBarry Warsaw1997-01-131-0/+1
|
* Test of the timing moduleBarry Warsaw1997-01-131-0/+21
|
* Renamed.Barry Warsaw1997-01-131-49/+45
|
* Use the new regrtest harnessBarry Warsaw1997-01-131-4/+1
|
* Formatting, and minor error detectionBarry Warsaw1997-01-131-49/+52
|
* updated the hex(-16) test since hex() of a signed literal has changed.Barry Warsaw1997-01-131-1/+1
|
* updated the oct(-100) test since oct() of a signed literal has changed.Barry Warsaw1997-01-131-1/+1
|
* initthread(): Removed extraneous Py_INCREF(ThreadError)Barry Warsaw1997-01-131-1/+0
|
* Catch sunaudiodev.error on open() and re-raise TestFailed exception.Barry Warsaw1997-01-131-3/+7
|
* Oops, remove debugging statementsBarry Warsaw1997-01-131-1/+0
|
* A slightly better test of sunaudiodev module. Include the audio dataBarry Warsaw1997-01-132-22/+9
| | | | in the distribution.
* Rewrite the `hostname mismatch' test as per GvR suggestion.Barry Warsaw1997-01-131-2/+8
| | | | | | | Don't assume gethostbyaddr()'s primary hostname is the same as gethostname(), or even that gethostname() can be found in the list of hosts returned by gethostbyaddr(). We do test for at least one FQDN in gethostbyaddr().
* Skip empty paths read from the registry.Guido van Rossum1997-01-121-6/+8
|
* Fix leak involving BuildValue("...O...").Guido van Rossum1997-01-121-3/+7
|
* Changed hex() and oct() again, to never emit a '-' sign.Guido van Rossum1997-01-121-7/+2
|
* Add the Lib/MACHDEP subdir to TESTPATH.Guido van Rossum1997-01-111-1/+1
|
* Add entries for cStringIO and cPickleGuido van Rossum1997-01-111-0/+3
|
* On Windows, -u implies binary mode for stdin/stdoutGuido van Rossum1997-01-111-0/+4
| | | | (as well as unbuffered stdout/stderr).
* New, better hash for floating point and complexGuido van Rossum1997-01-112-6/+41
|
* Use new struct which supports standardized sizesGuido van Rossum1997-01-111-5/+2
|
* Add __len__ methodGuido van Rossum1997-01-111-0/+4
|
* Use newer struct, which handles unsigned long rightGuido van Rossum1997-01-111-3/+1
|
* Added warning that gethostname() doesn't always return fqdn, and showGuido van Rossum1997-01-112-0/+10
| | | | how to find it using gethostbyaddr().
* The usual return-value and memory management checks. I'm not planningBarry Warsaw1997-01-101-10/+16
| | | | | a test for this module though (it does compile at least on Solaris 2.5)
* (ftplib.py): Added parse150() function and FTP.ntransfercmd(). This allowsFred Drake1997-01-101-3/+30
| | | | access to the expected size of a transfer when available.
* Subtle change to hex/oct formatting so the largest negative numberGuido van Rossum1997-01-101-2/+2
| | | | does not receive a minus sign.
* Return preferences of unknown type as opaque dataJack Jansen1997-01-101-1/+14
|
* Minor fix to get non-gusi python to compile againJack Jansen1997-01-101-5/+0
|
* Mac-specific version of getmtime (for non-GUSI Python, which needsJack Jansen1997-01-101-0/+50
| | | | different include files)
* (Tkinter.py): Add support for Frame(w, class_="classname") as an alternativeFred Drake1997-01-102-2/+8
| | | | | | | to Frame(w, cnf={"class": "classname"}). I think this is the only widget other than Toplevel that needs to be concerned about setting the widget's class (-class must be the first option on the Tcl widget creation command).
* Formatting changes, plus memory management in initsyslog()Barry Warsaw1997-01-091-90/+102
|
* initsignal(): Py_DECREFs really should be Py_XDECREFs in case theBarry Warsaw1997-01-091-34/+34
| | | | PyInt_FromLong's failed.
* Plugged a couple of potential return value problems, memory leaks, andBarry Warsaw1997-01-091-8/+13
| | | | descriptor leaks.
* Primarily formatting changes, but I also plugged a couple of potentialBarry Warsaw1997-01-091-302/+308
| | | | return value problems, memory leaks, and descriptor leaks.