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
2e2909f5
Commit
2e2909f5
authored
Feb 19, 2009
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add keyword arg support to itertools.compress().
parent
08259e8f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
Lib/test/test_itertools.py
Lib/test/test_itertools.py
+1
-0
Modules/itertoolsmodule.c
Modules/itertoolsmodule.c
+4
-6
No files found.
Lib/test/test_itertools.py
View file @
2e2909f5
...
...
@@ -306,6 +306,7 @@ class TestBasicOps(unittest.TestCase):
self
.
assertEqual
(
comb
,
sorted
(
set
(
cwr
)
&
set
(
perm
)))
# comb: both a cwr and a perm
def
test_compress
(
self
):
self
.
assertEqual
(
list
(
compress
(
data
=
'ABCDEF'
,
selectors
=
[
1
,
0
,
1
,
0
,
1
,
1
])),
list
(
'ACEF'
))
self
.
assertEqual
(
list
(
compress
(
'ABCDEF'
,
[
1
,
0
,
1
,
0
,
1
,
1
])),
list
(
'ACEF'
))
self
.
assertEqual
(
list
(
compress
(
'ABCDEF'
,
[
0
,
0
,
0
,
0
,
0
,
0
])),
list
(
''
))
self
.
assertEqual
(
list
(
compress
(
'ABCDEF'
,
[
1
,
1
,
1
,
1
,
1
,
1
])),
list
(
'ABCDEF'
))
...
...
Modules/itertoolsmodule.c
View file @
2e2909f5
...
...
@@ -2782,11 +2782,9 @@ compress_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
PyObject
*
seq1
,
*
seq2
;
PyObject
*
data
=
NULL
,
*
selectors
=
NULL
;
compressobject
*
lz
;
if
(
type
==
&
compress_type
&&
!
_PyArg_NoKeywords
(
"compress()"
,
kwds
))
return
NULL
;
if
(
!
PyArg_UnpackTuple
(
args
,
"compress"
,
2
,
2
,
&
seq1
,
&
seq2
))
static
char
*
kwargs
[]
=
{
"data"
,
"selectors"
,
NULL
};
if
(
!
PyArg_ParseTupleAndKeywords
(
args
,
kwds
,
"OO:compress"
,
kwargs
,
&
seq1
,
&
seq2
))
return
NULL
;
data
=
PyObject_GetIter
(
seq1
);
...
...
@@ -2864,7 +2862,7 @@ compress_next(compressobject *lz)
}
PyDoc_STRVAR
(
compress_doc
,
"compress(data
sequence, selector sequence
) --> iterator over selected data
\n
\
"compress(data
, selectors
) --> iterator over selected data
\n
\
\n
\
Return data elements corresponding to true selector elements.
\n
\
Forms a shorter iterator from selected data elements using the
\n
\
...
...
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