diff options
author | Barry Warsaw <barry@python.org> | 1997-01-14 17:45:08 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1997-01-14 17:45:08 (GMT) |
commit | 93d29b689509ddbd54ae8ea009c6731fba82cb81 (patch) | |
tree | c1f53fd6d5f36d29a5ce31fb612d1796b177c90a /Lib/test | |
parent | 61a63e152d568d761e13988376c204dbc3675779 (diff) | |
download | cpython-93d29b689509ddbd54ae8ea009c6731fba82cb81.zip cpython-93d29b689509ddbd54ae8ea009c6731fba82cb81.tar.gz cpython-93d29b689509ddbd54ae8ea009c6731fba82cb81.tar.bz2 |
Eliminated gcc -Wall complaints:
- 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!
:-)
Diffstat (limited to 'Lib/test')
0 files changed, 0 insertions, 0 deletions