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
dd7eb146
Kaydet (Commit)
dd7eb146
authored
Eki 18, 2003
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #792869: Clarify error message for parameters declared global,
rename LOCAL_GLOBAL to PARAM_GLOBAL.
üst
0f0c06a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
compile.c
Python/compile.c
+3
-4
No files found.
Python/compile.c
Dosyayı görüntüle @
dd7eb146
...
...
@@ -60,7 +60,7 @@ int Py_OptimizeFlag = 0;
#define GLOBAL_AFTER_USE \
"name '%.400s' is used prior to global declaration"
#define
LOCAL
_GLOBAL \
#define
PARAM
_GLOBAL \
"name '%.400s' is a function parameter and declared global"
#define LATE_FUTURE \
...
...
@@ -4843,7 +4843,7 @@ symtable_load_symbols(struct compiling *c)
c
->
c_argcount
--
;
else
if
(
flags
&
DEF_GLOBAL
)
{
if
(
flags
&
DEF_PARAM
)
{
PyErr_Format
(
PyExc_SyntaxError
,
LOCAL
_GLOBAL
,
PyErr_Format
(
PyExc_SyntaxError
,
PARAM
_GLOBAL
,
PyString_AS_STRING
(
name
));
symtable_error
(
st
,
0
);
goto
fail
;
...
...
@@ -5592,8 +5592,7 @@ symtable_global(struct symtable *st, node *n)
if
(
flags
&&
flags
!=
DEF_GLOBAL
)
{
char
buf
[
500
];
if
(
flags
&
DEF_PARAM
)
{
PyErr_Format
(
PyExc_SyntaxError
,
"name '%.400s' is local and global"
,
PyErr_Format
(
PyExc_SyntaxError
,
PARAM_GLOBAL
,
name
);
symtable_error
(
st
,
0
);
return
;
...
...
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