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
b551e9f0
Unverified
Kaydet (Commit)
b551e9f0
authored
May 11, 2018
tarafından
Ivan Levkivskyi
Kaydeden (comit)
GitHub
May 11, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix a bug in Generic.__new__ (GH-6758)
üst
df00f048
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
test_typing.py
Lib/test/test_typing.py
+3
-0
typing.py
Lib/typing.py
+1
-1
No files found.
Lib/test/test_typing.py
Dosyayı görüntüle @
b551e9f0
...
...
@@ -1367,6 +1367,9 @@ class GenericTests(BaseTestCase):
class
A
(
Generic
[
T
]):
pass
with
self
.
assertRaises
(
TypeError
):
A
(
'foo'
)
class
B
:
def
__new__
(
cls
):
# call object
...
...
Lib/typing.py
Dosyayı görüntüle @
b551e9f0
...
...
@@ -836,7 +836,7 @@ class Generic:
if
cls
is
Generic
:
raise
TypeError
(
"Type Generic cannot be instantiated; "
"it can be used only as a base class"
)
if
super
()
.
__new__
is
object
.
__new__
:
if
super
()
.
__new__
is
object
.
__new__
and
cls
.
__init__
is
not
object
.
__init__
:
obj
=
super
()
.
__new__
(
cls
)
else
:
obj
=
super
()
.
__new__
(
cls
,
*
args
,
**
kwds
)
...
...
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