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
ec97a28b
Kaydet (Commit)
ec97a28b
authored
Eki 21, 2005
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix a bunch of imports to use code.h instead of compile.h.
Remove duplicate declarations from compile.h
üst
0f00ba8b
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1 addition
and
13 deletions
+1
-13
compile.h
Include/compile.h
+0
-5
_hotshot.c
Modules/_hotshot.c
+0
-1
main.c
Modules/main.c
+1
-1
pyexpat.c
Modules/pyexpat.c
+0
-1
zipimport.c
Modules/zipimport.c
+0
-1
frameobject.c
Objects/frameobject.c
+0
-1
bltinmodule.c
Python/bltinmodule.c
+0
-1
marshal.c
Python/marshal.c
+0
-1
symtable.c
Python/symtable.c
+0
-1
No files found.
Include/compile.h
Dosyayı görüntüle @
ec97a28b
...
...
@@ -11,11 +11,6 @@ extern "C" {
/* Public interface */
struct
_node
;
/* Declare the existence of this type */
PyAPI_FUNC
(
PyCodeObject
*
)
PyNode_Compile
(
struct
_node
*
,
const
char
*
);
PyAPI_FUNC
(
PyCodeObject
*
)
PyCode_New
(
int
,
int
,
int
,
int
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
PyObject
*
,
int
,
PyObject
*
);
/* same as struct above */
PyAPI_FUNC
(
int
)
PyCode_Addr2Line
(
PyCodeObject
*
,
int
);
/* Future feature support */
...
...
Modules/_hotshot.c
Dosyayı görüntüle @
ec97a28b
...
...
@@ -4,7 +4,6 @@
#include "Python.h"
#include "code.h"
#include "compile.h"
#include "eval.h"
#include "frameobject.h"
#include "structmember.h"
...
...
Modules/main.c
Dosyayı görüntüle @
ec97a28b
...
...
@@ -2,7 +2,7 @@
#include "Python.h"
#include "osdefs.h"
#include "co
mpil
e.h"
/* For CO_FUTURE_DIVISION */
#include "co
d
e.h"
/* For CO_FUTURE_DIVISION */
#include "import.h"
#ifdef __VMS
...
...
Modules/pyexpat.c
Dosyayı görüntüle @
ec97a28b
#include "Python.h"
#include <ctype.h>
#include "compile.h"
#include "frameobject.h"
#include "expat.h"
...
...
Modules/zipimport.c
Dosyayı görüntüle @
ec97a28b
...
...
@@ -2,7 +2,6 @@
#include "structmember.h"
#include "osdefs.h"
#include "marshal.h"
#include "compile.h"
#include <time.h>
...
...
Objects/frameobject.c
Dosyayı görüntüle @
ec97a28b
...
...
@@ -4,7 +4,6 @@
#include "Python.h"
#include "code.h"
#include "compile.h"
#include "frameobject.h"
#include "opcode.h"
#include "structmember.h"
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
ec97a28b
...
...
@@ -4,7 +4,6 @@
#include "node.h"
#include "code.h"
#include "compile.h"
#include "eval.h"
#include <ctype.h>
...
...
Python/marshal.c
Dosyayı görüntüle @
ec97a28b
...
...
@@ -7,7 +7,6 @@
#include "Python.h"
#include "longintrepr.h"
#include "code.h"
#include "compile.h"
#include "marshal.h"
/* High water mark to determine when the marshalled object is dangerously deep
...
...
Python/symtable.c
Dosyayı görüntüle @
ec97a28b
#include "Python.h"
#include "Python-ast.h"
#include "code.h"
#include "compile.h"
#include "symtable.h"
#include "structmember.h"
...
...
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