diff options
| author | Matti Picus <matti.picus@gmail.com> | 2023-05-17 20:38:41 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-17 20:38:41 +0300 |
| commit | d9b38d687cd513aa6688f7fba805a908c0ac3979 (patch) | |
| tree | 54cf382350c5b11491ef729914b0ef65616159e4 /numpy/core/include | |
| parent | 0200e4a00c6ea90ab433962479f47a927a13ed3e (diff) | |
| parent | 1c1779490376077b8fef643f65222bb4834567b1 (diff) | |
| download | numpy-d9b38d687cd513aa6688f7fba805a908c0ac3979.tar.gz | |
Merge pull request #23505 from cbrt64/fix-2256
BUG: Use 2GiB chunking code for fwrite() on mingw32/64
Diffstat (limited to 'numpy/core/include')
| -rw-r--r-- | numpy/core/include/numpy/npy_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/include/numpy/npy_common.h b/numpy/core/include/numpy/npy_common.h index 728cedbf1..fb976aa6a 100644 --- a/numpy/core/include/numpy/npy_common.h +++ b/numpy/core/include/numpy/npy_common.h @@ -137,7 +137,7 @@ #define NPY_STEALS_REF_TO_ARG(n) #endif -/* 64 bit file position support, also on win-amd64. Ticket #1660 */ +/* 64 bit file position support, also on win-amd64. Issue gh-2256 */ #if defined(_MSC_VER) && defined(_WIN64) && (_MSC_VER > 1400) || \ defined(__MINGW32__) || defined(__MINGW64__) #include <io.h> |
