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
0c4d947e
Kaydet (Commit)
0c4d947e
authored
Nis 17, 1998
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replaced addpack by handcrafted code to find the bgen stuff.
üst
b36b8301
Hide whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
68 additions
and
64 deletions
+68
-64
aescan.py
Mac/Modules/ae/aescan.py
+4
-3
aesupport.py
Mac/Modules/ae/aesupport.py
+0
-2
nsremote.py
Mac/Modules/ae/nsremote.py
+0
-5
cmscan.py
Mac/Modules/cm/cmscan.py
+4
-2
ctlscan.py
Mac/Modules/ctl/ctlscan.py
+4
-2
ctlsupport.py
Mac/Modules/ctl/ctlsupport.py
+0
-3
dlgscan.py
Mac/Modules/dlg/dlgscan.py
+4
-2
dlgsupport.py
Mac/Modules/dlg/dlgsupport.py
+0
-3
evtscan.py
Mac/Modules/evt/evtscan.py
+4
-2
fmscan.py
Mac/Modules/fm/fmscan.py
+4
-2
helpscan.py
Mac/Modules/help/helpscan.py
+4
-2
listscan.py
Mac/Modules/list/listscan.py
+4
-2
menuscan.py
Mac/Modules/menu/menuscan.py
+4
-2
menusupport.py
Mac/Modules/menu/menusupport.py
+0
-3
qdscan.py
Mac/Modules/qd/qdscan.py
+4
-2
qdsupport.py
Mac/Modules/qd/qdsupport.py
+0
-3
qtscan.py
Mac/Modules/qt/qtscan.py
+4
-2
resscan.py
Mac/Modules/res/resscan.py
+3
-2
ressupport.py
Mac/Modules/res/ressupport.py
+0
-3
scrapscan.py
Mac/Modules/scrap/scrapscan.py
+4
-2
sndscan.py
Mac/Modules/snd/sndscan.py
+4
-2
sndsupport.py
Mac/Modules/snd/sndsupport.py
+0
-3
TEmodule.c
Mac/Modules/te/TEmodule.c
+1
-1
tescan.py
Mac/Modules/te/tescan.py
+4
-2
wastescan.py
Mac/Modules/waste/wastescan.py
+4
-2
winscan.py
Mac/Modules/win/winscan.py
+4
-2
winsupport.py
Mac/Modules/win/winsupport.py
+0
-3
No files found.
Mac/Modules/ae/aescan.py
Dosyayı görüntüle @
0c4d947e
# Scan AppleEvents.h header file, generate aegen.py and AppleEvents.py files.
# Then run aesupport to generate AEmodule.c.
0
# (Should learn how to tell the compiler to compile it as well.)
# (Should learn how to tell the compiler to compile it as well.)
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
import
sys
import
os
import
string
import
regex
import
regsub
import
MacOS
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
bgenlocations
import
TOOLBOXDIR
from
scantools
import
Scanner
...
...
Mac/Modules/ae/aesupport.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -3,8 +3,6 @@
# It execs the file aegen.py which contain the function definitions
# (aegen.py was generated by aescan.py, scanning the <AppleEvents.h> header file).
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
from
macsupport
import
*
...
...
Mac/Modules/ae/nsremote.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -11,13 +11,8 @@ Jack Jansen, CWI, January 1996.
# be nicer to use the more "object oriented" standard OSA stuff, when it
# is implemented in Netscape.
#
import
addpack
import
sys
addpack
.
addpack
(
'Tools'
)
addpack
.
addpack
(
'bgen'
)
addpack
.
addpack
(
'ae'
)
import
aetools
import
Standard_Suite
import
WWW_Suite
...
...
Mac/Modules/cm/cmscan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/ctl/ctlscan.py
Dosyayı görüntüle @
0c4d947e
# Scan <Controls.h>, generating ctlgen.py.
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/ctl/ctlsupport.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -5,9 +5,6 @@
import
string
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
# Declarations that change for each manager
MACHEADERFILE
=
'Controls.h'
# The Apple header file
MODNAME
=
'Ctl'
# The name of the module
...
...
Mac/Modules/dlg/dlgscan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/dlg/dlgsupport.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -3,9 +3,6 @@
# It execs the file dlggen.py which contain the function definitions
# (dlggen.py was generated by dlgscan.py, scanning the <Dialogs.h> header file).
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
from
macsupport
import
*
# Create the type objects
...
...
Mac/Modules/evt/evtscan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/fm/fmscan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/help/helpscan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/list/listscan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/menu/menuscan.py
Dosyayı görüntüle @
0c4d947e
# Scan <Menus.h>, generating menugen.py.
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/menu/menusupport.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -5,9 +5,6 @@
import
string
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
# Declarations that change for each manager
MACHEADERFILE
=
'Menus.h'
# The Apple header file
MODNAME
=
'Menu'
# The name of the module
...
...
Mac/Modules/qd/qdscan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/qd/qdsupport.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -5,9 +5,6 @@
import
string
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
# Declarations that change for each manager
MACHEADERFILE
=
'QuickDraw.h'
# The Apple header file
MODNAME
=
'Qd'
# The name of the module
...
...
Mac/Modules/qt/qtscan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/res/resscan.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -8,8 +8,9 @@ import string
import
regex
import
regsub
import
MacOS
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
bgenlocations
import
TOOLBOXDIR
from
scantools
import
Scanner
...
...
Mac/Modules/res/ressupport.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -3,9 +3,6 @@
# It execs the file resgen.py which contain the function definitions
# (resgen.py was generated by resscan.py, scanning the <Resources.h> header file).
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
from
macsupport
import
*
...
...
Mac/Modules/scrap/scrapscan.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -3,8 +3,10 @@
# Note that the scrap-manager include file is so weird that this
# generates a boilerplate to be edited by hand.
import
addpack
addpack
.
addpack
(
':tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/snd/sndscan.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -2,8 +2,10 @@
# Then import sndsupport (which execs sndgen.py) to generate Sndmodule.c.
# (Should learn how to tell the compiler to compile it as well.)
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
bgenlocations
import
TOOLBOXDIR
from
scantools
import
Scanner
...
...
Mac/Modules/snd/sndsupport.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -3,9 +3,6 @@
# It execs the file sndgen.py which contain the function definitions
# (sndgen.py was generated by sndscan.py, scanning the <Sound.h> header file).
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
from
macsupport
import
*
...
...
Mac/Modules/te/TEmodule.c
Dosyayı görüntüle @
0c4d947e
...
...
@@ -217,7 +217,7 @@ static PyObject *TEObj_TEKey(_self, _args)
{
PyObject
*
_res
=
NULL
;
CharParameter
key
;
if
(
!
PyArg_ParseTuple
(
_args
,
"
c
"
,
if
(
!
PyArg_ParseTuple
(
_args
,
"
h
"
,
&
key
))
return
NULL
;
TEKey
(
key
,
...
...
Mac/Modules/te/tescan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner
from
bgenlocations
import
TOOLBOXDIR
...
...
Mac/Modules/waste/wastescan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
scantools
import
Scanner_PreUH3
from
bgenlocations
import
MWERKSDIR
,
TOOLBOXDIR
...
...
Mac/Modules/win/winscan.py
Dosyayı görüntüle @
0c4d947e
# Scan an Apple header file, generating a Python file of generator calls.
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
import
sys
import
os
BGENDIR
=
os
.
path
.
join
(
sys
.
prefix
,
':Tools:bgen:bgen'
)
sys
.
path
.
append
(
BGENDIR
)
from
bgenlocations
import
TOOLBOXDIR
from
scantools
import
Scanner
...
...
Mac/Modules/win/winsupport.py
Dosyayı görüntüle @
0c4d947e
...
...
@@ -5,9 +5,6 @@
import
string
import
addpack
addpack
.
addpack
(
':Tools:bgen:bgen'
)
# Declarations that change for each manager
MACHEADERFILE
=
'Windows.h'
# The Apple header file
MODNAME
=
'Win'
# The name of the module
...
...
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