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
4ef58af9
Kaydet (Commit)
4ef58af9
authored
Agu 20, 2000
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Regenerated with fixes to gensuitemodule.
üst
0400515f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
44 additions
and
44 deletions
+44
-44
Required.py
Mac/Lib/lib-scriptpackages/CodeWarrior/Required.py
+1
-1
__init__.py
Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py
+8
-8
Required_suite.py
Mac/Lib/lib-scriptpackages/Netscape/Required_suite.py
+1
-1
Text.py
Mac/Lib/lib-scriptpackages/Netscape/Text.py
+1
-1
__init__.py
Mac/Lib/lib-scriptpackages/Netscape/__init__.py
+14
-14
__init__.py
Mac/Lib/lib-scriptpackages/StdSuites/__init__.py
+19
-19
No files found.
Mac/Lib/lib-scriptpackages/CodeWarrior/Required.py
Dosyayı görüntüle @
4ef58af9
...
...
@@ -11,7 +11,7 @@ import MacOS
_code
=
'reqd'
from
StdSuites.Required_Suite
import
*
class
Required_Events
:
class
Required_Events
(
Required_Suite_Events
)
:
_argmap_open
=
{
'converting'
:
'Conv'
,
...
...
Mac/Lib/lib-scriptpackages/CodeWarrior/__init__.py
Dosyayı görüntüle @
4ef58af9
...
...
@@ -19,10 +19,10 @@ _code_to_module = {
_code_to_fullname
=
{
'reqd'
:
'CodeWarrior.Required'
,
'CoRe'
:
'CodeWarrior.Standard_Suite'
,
'CWIE'
:
'CodeWarrior.CodeWarrior_suite'
,
'MMPR'
:
'CodeWarrior.Metrowerks_Shell_Suite'
,
'reqd'
:
(
'CodeWarrior.Required'
,
'Required'
)
,
'CoRe'
:
(
'CodeWarrior.Standard_Suite'
,
'Standard_Suite'
)
,
'CWIE'
:
(
'CodeWarrior.CodeWarrior_suite'
,
'CodeWarrior_suite'
)
,
'MMPR'
:
(
'CodeWarrior.Metrowerks_Shell_Suite'
,
'Metrowerks_Shell_Suite'
)
,
}
from
Required
import
*
...
...
@@ -32,9 +32,9 @@ from Metrowerks_Shell_Suite import *
class
CodeWarrior
(
Required_Events
,
Standard_Suite_Events
,
CodeWarrior_suite_Events
,
Metrowerks_Shell_Suite_Events
,
aetools
.
TalkTo
):
Standard_Suite_Events
,
CodeWarrior_suite_Events
,
Metrowerks_Shell_Suite_Events
,
aetools
.
TalkTo
):
_signature
=
'CWIE'
Mac/Lib/lib-scriptpackages/Netscape/Required_suite.py
Dosyayı görüntüle @
4ef58af9
...
...
@@ -11,7 +11,7 @@ import MacOS
_code
=
'reqd'
from
StdSuites.Required_Suite
import
*
class
Required_suite_Events
:
class
Required_suite_Events
(
Required_Suite_Events
)
:
def
open
(
self
,
_object
,
_attributes
=
{},
**
_arguments
):
"""open: Open the specified object(s)
...
...
Mac/Lib/lib-scriptpackages/Netscape/Text.py
Dosyayı görüntüle @
4ef58af9
...
...
@@ -11,7 +11,7 @@ import MacOS
_code
=
'TEXT'
from
StdSuites.Text_Suite
import
*
class
Text_Events
:
class
Text_Events
(
Text_Suite_Events
)
:
pass
...
...
Mac/Lib/lib-scriptpackages/Netscape/__init__.py
Dosyayı görüntüle @
4ef58af9
...
...
@@ -25,13 +25,13 @@ _code_to_module = {
_code_to_fullname
=
{
'reqd'
:
'Netscape.Required_suite'
,
'CoRe'
:
'Netscape.Standard_Suite'
,
'GURL'
:
'Netscape.Standard_URL_suite'
,
'WWW!'
:
'Netscape.WorldWideWeb_suite'
,
'MOSS'
:
'Netscape.Mozilla_suite'
,
'ppnt'
:
'Netscape.PowerPlant'
,
'TEXT'
:
'Netscape.Text'
,
'reqd'
:
(
'Netscape.Required_suite'
,
'Required_suite'
)
,
'CoRe'
:
(
'Netscape.Standard_Suite'
,
'Standard_Suite'
)
,
'GURL'
:
(
'Netscape.Standard_URL_suite'
,
'Standard_URL_suite'
)
,
'WWW!'
:
(
'Netscape.WorldWideWeb_suite'
,
'WorldWideWeb_suite'
)
,
'MOSS'
:
(
'Netscape.Mozilla_suite'
,
'Mozilla_suite'
)
,
'ppnt'
:
(
'Netscape.PowerPlant'
,
'PowerPlant'
)
,
'TEXT'
:
(
'Netscape.Text'
,
'Text'
)
,
}
from
Required_suite
import
*
...
...
@@ -44,12 +44,12 @@ from Text import *
class
Netscape
(
Required_suite_Events
,
Standard_Suite_Events
,
Standard_URL_suite_Events
,
WorldWideWeb_suite_Events
,
Mozilla_suite_Events
,
PowerPlant_Events
,
Text_Events
,
aetools
.
TalkTo
):
Standard_Suite_Events
,
Standard_URL_suite_Events
,
WorldWideWeb_suite_Events
,
Mozilla_suite_Events
,
PowerPlant_Events
,
Text_Events
,
aetools
.
TalkTo
):
_signature
=
'MOSS'
Mac/Lib/lib-scriptpackages/StdSuites/__init__.py
Dosyayı görüntüle @
4ef58af9
...
...
@@ -29,15 +29,15 @@ _code_to_module = {
_code_to_fullname
=
{
'ascr'
:
'StdSuites.AppleScript_Suite'
,
'reqd'
:
'StdSuites.Required_Suite'
,
'core'
:
'StdSuites.Standard_Suite'
,
'TEXT'
:
'StdSuites.Text_Suite'
,
'qdrw'
:
'StdSuites.QuickDraw_Graphics_Suite'
,
'qdsp'
:
'StdSuites.QuickDraw_Graphics_Suppleme'
,
'tbls'
:
'StdSuites.Table_Suite'
,
'macc'
:
'StdSuites.Macintosh_Connectivity_Clas'
,
'tpnm'
:
'StdSuites.Type_Names_Suite'
,
'ascr'
:
(
'StdSuites.AppleScript_Suite'
,
'AppleScript_Suite'
)
,
'reqd'
:
(
'StdSuites.Required_Suite'
,
'Required_Suite'
)
,
'core'
:
(
'StdSuites.Standard_Suite'
,
'Standard_Suite'
)
,
'TEXT'
:
(
'StdSuites.Text_Suite'
,
'Text_Suite'
)
,
'qdrw'
:
(
'StdSuites.QuickDraw_Graphics_Suite'
,
'QuickDraw_Graphics_Suite'
)
,
'qdsp'
:
(
'StdSuites.QuickDraw_Graphics_Suppleme'
,
'QuickDraw_Graphics_Suppleme'
)
,
'tbls'
:
(
'StdSuites.Table_Suite'
,
'Table_Suite'
)
,
'macc'
:
(
'StdSuites.Macintosh_Connectivity_Clas'
,
'Macintosh_Connectivity_Clas'
)
,
'tpnm'
:
(
'StdSuites.Type_Names_Suite'
,
'Type_Names_Suite'
)
,
}
from
AppleScript_Suite
import
*
...
...
@@ -52,14 +52,14 @@ from Type_Names_Suite import *
class
StdSuites
(
AppleScript_Suite_Events
,
Required_Suite_Events
,
Standard_Suite_Events
,
Text_Suite_Events
,
QuickDraw_Graphics_Suite_Events
,
QuickDraw_Graphics_Suppleme_Events
,
Table_Suite_Events
,
Macintosh_Connectivity_Clas_Events
,
Type_Names_Suite_Events
,
aetools
.
TalkTo
):
pass
Required_Suite_Events
,
Standard_Suite_Events
,
Text_Suite_Events
,
QuickDraw_Graphics_Suite_Events
,
QuickDraw_Graphics_Suppleme_Events
,
Table_Suite_Events
,
Macintosh_Connectivity_Clas_Events
,
Type_Names_Suite_Events
,
aetools
.
TalkTo
):
_signature
=
'ascr'
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