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
0db38532
Kaydet (Commit)
0db38532
authored
Kas 29, 2007
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed more types from the types module
üst
043c8f86
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
9 deletions
+3
-9
types.rst
Doc/library/types.rst
+0
-5
_abcoll.py
Lib/_abcoll.py
+3
-1
types.py
Lib/types.py
+0
-3
No files found.
Doc/library/types.rst
Dosyayı görüntüle @
0db38532
...
...
@@ -85,11 +85,6 @@ The module defines the following names:
traceback object.
.. data:: DictProxyType
The type of dict proxies, such as ``type.__dict__``.
.. data:: GetSetDescriptorType
The type of objects defined in extension modules with ``PyGetSetDef``, such as
...
...
Lib/_abcoll.py
Dosyayı görüntüle @
0db38532
...
...
@@ -18,7 +18,7 @@ __all__ = ["Hashable", "Iterable", "Iterator",
"Sequence"
,
"MutableSequence"
,
"ByteString"
,
"bytearray_iterator"
,
"bytes_iterator"
,
"dict_itemiterator"
,
"dict_items"
,
"dict_keyiterator"
,
"dict_keys"
,
"dict_items"
,
"dict_keyiterator"
,
"dict_keys"
,
"dict_proxy"
,
"dict_valueiterator"
,
"dict_values"
,
"list_iterator"
,
"list_reverseiterator"
,
"range_iterator"
,
"set_iterator"
,
"str_iterator"
,
"tuple_iterator"
,
"zip_iterator"
,
...
...
@@ -44,6 +44,8 @@ zip_iterator = type(iter(zip()))
dict_keys
=
type
({}
.
keys
())
dict_values
=
type
({}
.
values
())
dict_items
=
type
({}
.
items
())
## misc ##
dict_proxy
=
type
(
type
.
__dict__
)
### ONE-TRICK PONIES ###
...
...
Lib/types.py
Dosyayı görüntüle @
0db38532
...
...
@@ -20,7 +20,6 @@ GeneratorType = type(_g())
class
_C
:
def
_m
(
self
):
pass
ClassType
=
type
MethodType
=
type
(
_C
()
.
_m
)
BuiltinFunctionType
=
type
(
len
)
...
...
@@ -36,8 +35,6 @@ except TypeError:
FrameType
=
type
(
tb
.
tb_frame
)
tb
=
None
;
del
tb
DictProxyType
=
type
(
type
.
__dict__
)
# Extension types defined in a C helper module. XXX There may be no
# equivalent in implementations other than CPython, so it seems better to
# leave them undefined then to set them to e.g. None.
...
...
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