Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
df1b6994
Kaydet (Commit)
df1b6994
authored
Kas 09, 2014
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #22823: Use set literals instead of creating a set from a list
üst
bf764a19
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
19 additions
and
20 deletions
+19
-20
logging-cookbook.rst
Doc/howto/logging-cookbook.rst
+1
-1
pickle.rst
Doc/library/pickle.rst
+1
-1
_strptime.py
Lib/_strptime.py
+2
-2
asyncore.py
Lib/asyncore.py
+3
-3
ipaddress.py
Lib/ipaddress.py
+1
-1
mailbox.py
Lib/mailbox.py
+2
-2
sre_compile.py
Lib/sre_compile.py
+4
-4
sre_parse.py
Lib/sre_parse.py
+2
-2
statistics.py
Lib/statistics.py
+2
-2
asdl.py
Parser/asdl.py
+1
-2
No files found.
Doc/howto/logging-cookbook.rst
Dosyayı görüntüle @
df1b6994
...
...
@@ -1680,7 +1680,7 @@ as in the following complete example::
def main():
logging.basicConfig(level=logging.INFO, format='%(message)s')
logging.info(_('message 1', set_value=
set([1, 2, 3])
, snowman='\u2603'))
logging.info(_('message 1', set_value=
{1, 2, 3}
, snowman='\u2603'))
if __name__ == '__main__':
main()
...
...
Doc/library/pickle.rst
Dosyayı görüntüle @
df1b6994
...
...
@@ -859,7 +859,7 @@ For the simplest code, use the :func:`dump` and :func:`load` functions. ::
data = {
'a': [1, 2.0, 3, 4+6j],
'b': ("character string", b"byte string"),
'c':
set([None, True, False])
'c':
{None, True, False}
}
with open('data.pickle', 'wb') as f:
...
...
Lib/_strptime.py
Dosyayı görüntüle @
df1b6994
...
...
@@ -167,9 +167,9 @@ class LocaleTime(object):
time
.
tzset
()
except
AttributeError
:
pass
no_saving
=
frozenset
(
[
"utc"
,
"gmt"
,
time
.
tzname
[
0
]
.
lower
()]
)
no_saving
=
frozenset
(
{
"utc"
,
"gmt"
,
time
.
tzname
[
0
]
.
lower
()}
)
if
time
.
daylight
:
has_saving
=
frozenset
(
[
time
.
tzname
[
1
]
.
lower
()]
)
has_saving
=
frozenset
(
{
time
.
tzname
[
1
]
.
lower
()}
)
else
:
has_saving
=
frozenset
()
self
.
timezone
=
(
no_saving
,
has_saving
)
...
...
Lib/asyncore.py
Dosyayı görüntüle @
df1b6994
...
...
@@ -57,8 +57,8 @@ from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \
ENOTCONN
,
ESHUTDOWN
,
EISCONN
,
EBADF
,
ECONNABORTED
,
EPIPE
,
EAGAIN
,
\
errorcode
_DISCONNECTED
=
frozenset
(
(
ECONNRESET
,
ENOTCONN
,
ESHUTDOWN
,
ECONNABORTED
,
EPIPE
,
EBADF
)
)
_DISCONNECTED
=
frozenset
(
{
ECONNRESET
,
ENOTCONN
,
ESHUTDOWN
,
ECONNABORTED
,
EPIPE
,
EBADF
}
)
try
:
socket_map
...
...
@@ -220,7 +220,7 @@ class dispatcher:
connecting
=
False
closing
=
False
addr
=
None
ignore_log_types
=
frozenset
(
[
'warning'
]
)
ignore_log_types
=
frozenset
(
{
'warning'
}
)
def
__init__
(
self
,
sock
=
None
,
map
=
None
):
if
map
is
None
:
...
...
Lib/ipaddress.py
Dosyayı görüntüle @
df1b6994
...
...
@@ -1088,7 +1088,7 @@ class _BaseV4:
_DECIMAL_DIGITS
=
frozenset
(
'0123456789'
)
# the valid octets for host and netmasks. only useful for IPv4.
_valid_mask_octets
=
frozenset
(
(
255
,
254
,
252
,
248
,
240
,
224
,
192
,
128
,
0
)
)
_valid_mask_octets
=
frozenset
(
{
255
,
254
,
252
,
248
,
240
,
224
,
192
,
128
,
0
}
)
_max_prefixlen
=
IPV4LENGTH
# There are only a handful of valid v4 netmasks, so we cache them all
...
...
Lib/mailbox.py
Dosyayı görüntüle @
df1b6994
...
...
@@ -1230,8 +1230,8 @@ class MH(Mailbox):
class
Babyl
(
_singlefileMailbox
):
"""An Rmail-style Babyl mailbox."""
_special_labels
=
frozenset
(
(
'unseen'
,
'deleted'
,
'filed'
,
'answered'
,
'forwarded'
,
'edited'
,
'resent'
)
)
_special_labels
=
frozenset
(
{
'unseen'
,
'deleted'
,
'filed'
,
'answered'
,
'forwarded'
,
'edited'
,
'resent'
}
)
def
__init__
(
self
,
path
,
factory
=
None
,
create
=
True
):
"""Initialize a Babyl mailbox."""
...
...
Lib/sre_compile.py
Dosyayı görüntüle @
df1b6994
...
...
@@ -22,10 +22,10 @@ if _sre.CODESIZE == 2:
else
:
MAXCODE
=
0xFFFFFFFF
_LITERAL_CODES
=
set
([
LITERAL
,
NOT_LITERAL
])
_REPEATING_CODES
=
set
([
REPEAT
,
MIN_REPEAT
,
MAX_REPEAT
])
_SUCCESS_CODES
=
set
([
SUCCESS
,
FAILURE
])
_ASSERT_CODES
=
set
([
ASSERT
,
ASSERT_NOT
])
_LITERAL_CODES
=
{
LITERAL
,
NOT_LITERAL
}
_REPEATING_CODES
=
{
REPEAT
,
MIN_REPEAT
,
MAX_REPEAT
}
_SUCCESS_CODES
=
{
SUCCESS
,
FAILURE
}
_ASSERT_CODES
=
{
ASSERT
,
ASSERT_NOT
}
def
_compile
(
code
,
pattern
,
flags
):
# internal: compile a (sub)pattern
...
...
Lib/sre_parse.py
Dosyayı görüntüle @
df1b6994
...
...
@@ -25,8 +25,8 @@ HEXDIGITS = frozenset("0123456789abcdefABCDEF")
WHITESPACE
=
frozenset
(
"
\t\n\r\v\f
"
)
_REPEATCODES
=
frozenset
(
(
MIN_REPEAT
,
MAX_REPEAT
)
)
_UNITCODES
=
frozenset
(
(
ANY
,
RANGE
,
IN
,
LITERAL
,
NOT_LITERAL
,
CATEGORY
)
)
_REPEATCODES
=
frozenset
(
{
MIN_REPEAT
,
MAX_REPEAT
}
)
_UNITCODES
=
frozenset
(
{
ANY
,
RANGE
,
IN
,
LITERAL
,
NOT_LITERAL
,
CATEGORY
}
)
ESCAPES
=
{
r"\a"
:
(
LITERAL
,
ord
(
"
\a
"
)),
...
...
Lib/statistics.py
Dosyayı görüntüle @
df1b6994
...
...
@@ -150,7 +150,7 @@ def _sum(data, start=0):
# We fail as soon as we reach a value that is not an int or the type of
# the first value which is not an int. E.g. _sum([int, int, float, int])
# is okay, but sum([int, int, float, Fraction]) is not.
allowed_types
=
set
([
int
,
type
(
start
)])
allowed_types
=
{
int
,
type
(
start
)}
n
,
d
=
_exact_ratio
(
start
)
partials
=
{
d
:
n
}
# map {denominator: sum of numerators}
# Micro-optimizations.
...
...
@@ -168,7 +168,7 @@ def _sum(data, start=0):
assert
allowed_types
.
pop
()
is
int
T
=
int
else
:
T
=
(
allowed_types
-
set
([
int
])
)
.
pop
()
T
=
(
allowed_types
-
{
int
}
)
.
pop
()
if
None
in
partials
:
assert
issubclass
(
T
,
(
float
,
Decimal
))
assert
not
math
.
isfinite
(
partials
[
None
])
...
...
Parser/asdl.py
Dosyayı görüntüle @
df1b6994
...
...
@@ -33,8 +33,7 @@ __all__ = [
# See the EBNF at the top of the file to understand the logical connection
# between the various node types.
builtin_types
=
set
(
[
'identifier'
,
'string'
,
'bytes'
,
'int'
,
'object'
,
'singleton'
])
builtin_types
=
{
'identifier'
,
'string'
,
'bytes'
,
'int'
,
'object'
,
'singleton'
}
class
AST
:
def
__repr__
(
self
):
...
...
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