mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Hide list comp variables and support set comprehensions
This commit is contained in:
parent
6ef6306dd6
commit
650f0d06d3
29 changed files with 2006 additions and 1323 deletions
|
@ -20,9 +20,9 @@ from datetime import time
|
|||
from datetime import date, datetime
|
||||
|
||||
pickle_choices = [(pickler, unpickler, proto)
|
||||
for pickler in pickle, cPickle
|
||||
for pickler in (pickle, cPickle)
|
||||
if pickler is not None
|
||||
for unpickler in pickle, cPickle
|
||||
for unpickler in (pickle, cPickle)
|
||||
if unpickler is not None
|
||||
for proto in range(3)]
|
||||
if cPickle is None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue