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
090b3dde
Kaydet (Commit)
090b3dde
authored
Şub 28, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
No need to export PySTEntry_New, it is only used in symtable.c
üst
7ef75e46
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
symtable.h
Include/symtable.h
+1
-2
symtable.c
Python/symtable.c
+2
-1
No files found.
Include/symtable.h
Dosyayı görüntüle @
090b3dde
#ifndef Py_SYMTABLE_H
#define Py_SYMTABLE_H
#ifdef __cplusplus
extern
"C"
{
#endif
...
...
@@ -48,8 +49,6 @@ PyAPI_DATA(PyTypeObject) PySTEntry_Type;
#define PySTEntry_Check(op) ((op)->ob_type == &PySTEntry_Type)
PyAPI_FUNC
(
PySTEntryObject
*
)
\
PySTEntry_New
(
struct
symtable
*
,
identifier
,
_Py_block_ty
,
void
*
,
int
);
PyAPI_FUNC
(
int
)
PyST_GetScope
(
PySTEntryObject
*
,
PyObject
*
);
PyAPI_FUNC
(
struct
symtable
*
)
PySymtable_Build
(
mod_ty
,
const
char
*
,
...
...
Python/symtable.c
Dosyayı görüntüle @
090b3dde
...
...
@@ -14,7 +14,8 @@
#define IMPORT_STAR_WARNING "import * only allowed at module level"
PySTEntryObject
*
/* XXX(nnorwitz): change name since static? */
static
PySTEntryObject
*
PySTEntry_New
(
struct
symtable
*
st
,
identifier
name
,
_Py_block_ty
block
,
void
*
key
,
int
lineno
)
{
...
...
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