1. 17 Ock, 1997 16 kayıt (commit)
  2. 16 Ock, 1997 14 kayıt (commit)
  3. 15 Ock, 1997 5 kayıt (commit)
  4. 14 Ock, 1997 5 kayıt (commit)
    • Guido van Rossum's avatar
    • Barry Warsaw's avatar
      Removed _xdr module · 9a0313cd
      Barry Warsaw yazdı
      9a0313cd
    • Barry Warsaw's avatar
      bd8a9119
    • Barry Warsaw's avatar
      Eliminated gcc -Wall complaints: · 93d29b68
      Barry Warsaw yazdı
          - 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!
      :-)
      93d29b68
    • Barry Warsaw's avatar
      Quieted gcc -Wall by removing unused local variables. · 61a63e15
      Barry Warsaw yazdı
      Suppressing my urge to reformat according to Python coding standards!
      :-)
      61a63e15