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
8a9cc526
Kaydet (Commit)
8a9cc526
authored
Eyl 30, 2012
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#15923: merge with 3.2.
üst
ffc3dee5
cb2916a7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
Misc/NEWS
+3
-0
asdl_c.py
Parser/asdl_c.py
+1
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
8a9cc526
...
@@ -99,6 +99,9 @@ Tests
...
@@ -99,6 +99,9 @@ Tests
Build
Build
-----
-----
- Issue #15923: fix a mistake in asdl_c.py that resulted in a TypeError after
2801bf875a24 (see #15801).
- Issue #15819: Make sure we can build Python out-of-tree from a readonly
- Issue #15819: Make sure we can build Python out-of-tree from a readonly
source directory. (Somewhat related to Issue #9860.)
source directory. (Somewhat related to Issue #9860.)
...
...
Parser/asdl_c.py
Dosyayı görüntüle @
8a9cc526
...
@@ -1064,7 +1064,7 @@ class ObjVisitor(PickleVisitor):
...
@@ -1064,7 +1064,7 @@ class ObjVisitor(PickleVisitor):
self
.
emit
(
"case
%
s:"
%
t
.
name
,
2
)
self
.
emit
(
"case
%
s:"
%
t
.
name
,
2
)
self
.
emit
(
"Py_INCREF(
%
s_singleton);"
%
t
.
name
,
3
)
self
.
emit
(
"Py_INCREF(
%
s_singleton);"
%
t
.
name
,
3
)
self
.
emit
(
"return
%
s_singleton;"
%
t
.
name
,
3
)
self
.
emit
(
"return
%
s_singleton;"
%
t
.
name
,
3
)
self
.
emit
(
"default:"
%
name
,
2
)
self
.
emit
(
"default:"
,
2
)
self
.
emit
(
'/* should never happen, but just in case ... */'
,
3
)
self
.
emit
(
'/* should never happen, but just in case ... */'
,
3
)
code
=
"PyErr_Format(PyExc_SystemError,
\"
unknown
%
s found
\"
);"
%
name
code
=
"PyErr_Format(PyExc_SystemError,
\"
unknown
%
s found
\"
);"
%
name
self
.
emit
(
code
,
3
,
reflow
=
False
)
self
.
emit
(
code
,
3
,
reflow
=
False
)
...
...
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