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
2673a572
Kaydet (Commit)
2673a572
authored
Eki 29, 2007
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1356: Avoid using the C99 keyword 'restrict'.
üst
6203d8fa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
symtable.c
Python/symtable.c
+4
-4
No files found.
Python/symtable.c
Dosyayı görüntüle @
2673a572
...
...
@@ -465,12 +465,12 @@ analyze_name(PySTEntryObject *ste, PyObject *scopes, PyObject *name, long flags,
Note that the current block's free variables are included in free.
That's safe because no name can be free and local in the same scope.
The 'restrict' argument may be set to a string to restrict the analysis
The 'restrict
ed
' argument may be set to a string to restrict the analysis
to the one variable whose name equals that string (e.g. "__class__").
*/
static
int
analyze_cells
(
PyObject
*
scopes
,
PyObject
*
free
,
const
char
*
restrict
)
analyze_cells
(
PyObject
*
scopes
,
PyObject
*
free
,
const
char
*
restrict
ed
)
{
PyObject
*
name
,
*
v
,
*
v_cell
;
int
success
=
0
;
...
...
@@ -487,8 +487,8 @@ analyze_cells(PyObject *scopes, PyObject *free, const char *restrict)
continue
;
if
(
!
PySet_Contains
(
free
,
name
))
continue
;
if
(
restrict
!=
NULL
&&
PyUnicode_CompareWithASCIIString
(
name
,
restrict
))
if
(
restrict
ed
!=
NULL
&&
PyUnicode_CompareWithASCIIString
(
name
,
restrict
ed
))
continue
;
/* Replace LOCAL with CELL for this name, and remove
from free. It is safe to replace the value of name
...
...
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