summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-08-22 15:59:18 (GMT)
committerGitHub <noreply@github.com>2019-08-22 15:59:18 (GMT)
commit2878f378e02990303a8fe4bedd5386bd90efc26d (patch)
tree7b364249992d760832459559ef47a44d95e9ddb0 /PC
parent8ede9676bb8350e6d0206158f795d48075e33081 (diff)
downloadcpython-2878f378e02990303a8fe4bedd5386bd90efc26d.zip
cpython-2878f378e02990303a8fe4bedd5386bd90efc26d.tar.gz
cpython-2878f378e02990303a8fe4bedd5386bd90efc26d.tar.bz2
bpo-27961: Remove leftovers from the times when long long wasn't required (GH-15388)
(cherry picked from commit a38e9d139929a227e3899fbb638bc46c6cc6d8ba) Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
Diffstat (limited to 'PC')
-rw-r--r--PC/pyconfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
index 3d7425a..b40e24f 100644
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -295,7 +295,7 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
# define SIZEOF_FPOS_T 8
# define SIZEOF_HKEY 8
# define SIZEOF_SIZE_T 8
-/* configure.ac defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
+/* configure.ac defines HAVE_LARGEFILE_SUPPORT iff
sizeof(off_t) > sizeof(long), and sizeof(PY_LONG_LONG) >= sizeof(off_t).
On Win64 the second condition is not true, but if fpos_t replaces off_t
then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64