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
0d012f28
Kaydet (Commit)
0d012f28
authored
Ara 04, 2010
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Expose CompileString, not CompileStringFlags under the
limited API.
üst
66f2623f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
pythonrun.h
Include/pythonrun.h
+1
-1
python3.def
PC/python3.def
+1
-1
No files found.
Include/pythonrun.h
Dosyayı görüntüle @
0d012f28
...
@@ -74,7 +74,7 @@ PyAPI_FUNC(PyObject *) PyRun_FileExFlags(FILE *, const char *, int,
...
@@ -74,7 +74,7 @@ PyAPI_FUNC(PyObject *) PyRun_FileExFlags(FILE *, const char *, int,
#endif
#endif
#ifdef Py_LIMITED_API
#ifdef Py_LIMITED_API
PyAPI_FUNC
(
PyObject
*
)
Py_CompileString
Flags
(
const
char
*
,
const
char
*
,
int
);
PyAPI_FUNC
(
PyObject
*
)
Py_CompileString
(
const
char
*
,
const
char
*
,
int
);
#else
#else
#define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1)
#define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1)
#define Py_CompileStringFlags(str, p, s, f) Py_CompileStringExFlags(str, p, s, f, -1)
#define Py_CompileStringFlags(str, p, s, f) Py_CompileStringExFlags(str, p, s, f, -1)
...
...
PC/python3.def
Dosyayı görüntüle @
0d012f28
...
@@ -632,7 +632,7 @@ EXPORTS
...
@@ -632,7 +632,7 @@ EXPORTS
Py_AddPendingCall=python32.Py_AddPendingCall
Py_AddPendingCall=python32.Py_AddPendingCall
Py_AtExit=python32.Py_AtExit
Py_AtExit=python32.Py_AtExit
Py_BuildValue=python32.Py_BuildValue
Py_BuildValue=python32.Py_BuildValue
Py_CompileString
Flags=python32.Py_CompileStringFlags
Py_CompileString
=python32.Py_CompileString
Py_DecRef=python32.Py_DecRef
Py_DecRef=python32.Py_DecRef
Py_EndInterpreter=python32.Py_EndInterpreter
Py_EndInterpreter=python32.Py_EndInterpreter
Py_Exit=python32.Py_Exit
Py_Exit=python32.Py_Exit
...
...
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