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 0b81111 commit e0b99baCopy full SHA for e0b99ba
Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
10
Core and Builtins
11
-----------------
12
13
+- Issue #17932: Fix an integer overflow issue on Windows 64-bit in iterators:
14
+ change the C type of seqiterobject.it_index from long to Py_ssize_t.
15
+
16
- Issue #18065: Don't set __path__ to the package name for frozen packages.
17
18
- Issue #18088: When reloading a module, unconditionally reset all relevant
Objects/iterobject.c
@@ -4,7 +4,7 @@
4
5
typedef struct {
6
PyObject_HEAD
7
- long it_index;
+ Py_ssize_t it_index;
8
PyObject *it_seq; /* Set to NULL when iterator is exhausted */
9
} seqiterobject;
0 commit comments