Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
fa220ec7
Commit
fa220ec7
authored
Aug 29, 2019
by
HongWeipeng
Committed by
Raymond Hettinger
Aug 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Raise a RuntimeError when tee iterator is consumed from different threads (GH-15567)
parent
13f37f2b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
Doc/library/itertools.rst
Doc/library/itertools.rst
+2
-1
Misc/NEWS.d/next/Library/2019-08-29-10-26-57.bpo-34410.ttCIpm.rst
...S.d/next/Library/2019-08-29-10-26-57.bpo-34410.ttCIpm.rst
+2
-0
Modules/itertoolsmodule.c
Modules/itertoolsmodule.c
+8
-0
No files found.
Doc/library/itertools.rst
View file @
fa220ec7
...
...
@@ -643,7 +643,8 @@ loops that truncate the stream.
Once :func:`tee` has made a split, the original *iterable* should not be
used anywhere else; otherwise, the *iterable* could get advanced without
the tee objects being informed.
the tee objects being informed. the :func:`tee` iterator can not be consumed
from different threads, even if an underlying iterator is thread-safe.
This itertool may require significant auxiliary storage (depending on how
much temporary data needs to be stored). In general, if one iterator uses
...
...
Misc/NEWS.d/next/Library/2019-08-29-10-26-57.bpo-34410.ttCIpm.rst
0 → 100644
View file @
fa220ec7
Raise a RuntimeError when itertools.tee() iterator is consumed from different
threads. Patch by hongweipeng.
Modules/itertoolsmodule.c
View file @
fa220ec7
...
...
@@ -452,6 +452,7 @@ typedef struct {
teedataobject
*
dataobj
;
int
index
;
/* 0 <= index <= LINKCELLS */
PyObject
*
weakreflist
;
unsigned
long
thread_id
;
}
teeobject
;
static
PyTypeObject
teedataobject_type
;
...
...
@@ -680,6 +681,11 @@ tee_next(teeobject *to)
{
PyObject
*
value
,
*
link
;
if
(
to
->
thread_id
!=
PyThread_get_thread_ident
())
{
PyErr_SetString
(
PyExc_RuntimeError
,
"tee() iterator can not be consumed from different threads."
);
return
NULL
;
}
if
(
to
->
index
>=
LINKCELLS
)
{
link
=
teedataobject_jumplink
(
to
->
dataobj
);
if
(
link
==
NULL
)
...
...
@@ -713,6 +719,7 @@ tee_copy(teeobject *to, PyObject *Py_UNUSED(ignored))
newto
->
dataobj
=
to
->
dataobj
;
newto
->
index
=
to
->
index
;
newto
->
weakreflist
=
NULL
;
newto
->
thread_id
=
to
->
thread_id
;
PyObject_GC_Track
(
newto
);
return
(
PyObject
*
)
newto
;
}
...
...
@@ -745,6 +752,7 @@ tee_fromiterable(PyObject *iterable)
to
->
index
=
0
;
to
->
weakreflist
=
NULL
;
to
->
thread_id
=
PyThread_get_thread_ident
();
PyObject_GC_Track
(
to
);
done:
Py_XDECREF
(
it
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment