We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a21724 commit c8d406dCopy full SHA for c8d406d
marshal/marshal.go
@@ -124,14 +124,14 @@ func ReadObject(r io.Reader) (obj py.Object, err error) {
124
if err != nil {
125
return
126
}
127
- var c complex64
+ var c complex128
128
// FIXME c, err = strconv.ParseComplex(string(buf), 64)
129
130
131
132
return py.Complex(c), nil
133
case TYPE_BINARY_COMPLEX:
134
135
err = binary.Read(r, binary.LittleEndian, &c)
136
137
0 commit comments