Closed GoogleCodeExporter closed 8 years ago
I don't see those errors with a svn build of netcdf on macos x. I wonder if
it's specific to the windows build.
Original comment by whitaker.jeffrey@gmail.com
on 9 Jan 2013 at 2:53
Good to know it works on other platforms.
It's a simple call to Python's PySequence_GetSlice C API function that fails.
Could be due to some memory corruption.
Inserting the following print statement for debugging purposes in netCDF4.pyx
around line 2157 shows the problem:
print datatype.str, len(datatype.str), datatype.str[:], datatype.str[1:],
datatype.str[slice(1, None, None)]
Output: <f8 3 <f f f8
Original comment by cjgoh...@gmail.com
on 9 Jan 2013 at 4:09
It turns out the new netcdf.h file redefines size_t in a wrong way on win64.
Please close this issue.
Original comment by cjgoh...@gmail.com
on 11 Jan 2013 at 1:13
Original comment by whitaker.jeffrey@gmail.com
on 11 Jan 2013 at 1:57
Original issue reported on code.google.com by
cjgoh...@gmail.com
on 9 Jan 2013 at 2:26Attachments: