summaryrefslogtreecommitdiff
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-08-19 22:28:32 +0000
committerJack Jansen <jack.jansen@cwi.nl>2001-08-19 22:28:32 +0000
commite5517bc8419194b1a769527ed3356f6ee787d2a0 (patch)
treeb3fb7293f60493a9a4c66f3f38abe565d6d502e3 /Mac
parent6d88e62ea50a5a8d3faeeeef5a9f6e7be4c4731c (diff)
downloadcpython-e5517bc8419194b1a769527ed3356f6ee787d2a0.tar.gz
Compatibility modules. lib-compat is on the default sys.path for MacPython 2.2, and each of these modules imports * from its namesake in the Carbon package.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Lib/lib-compat/AE.py1
-rw-r--r--Mac/Lib/lib-compat/App.py1
-rw-r--r--Mac/Lib/lib-compat/Appearance.py1
-rw-r--r--Mac/Lib/lib-compat/AppleEvents.py1
-rw-r--r--Mac/Lib/lib-compat/Balloons.py1
-rw-r--r--Mac/Lib/lib-compat/CF.py1
-rw-r--r--Mac/Lib/lib-compat/Cm.py1
-rw-r--r--Mac/Lib/lib-compat/Components.py1
-rw-r--r--Mac/Lib/lib-compat/ControlAccessor.py1
-rw-r--r--Mac/Lib/lib-compat/Controls.py1
-rw-r--r--Mac/Lib/lib-compat/Ctl.py1
-rw-r--r--Mac/Lib/lib-compat/Dialogs.py1
-rw-r--r--Mac/Lib/lib-compat/Dlg.py1
-rw-r--r--Mac/Lib/lib-compat/Drag.py1
-rw-r--r--Mac/Lib/lib-compat/Dragconst.py1
-rw-r--r--Mac/Lib/lib-compat/Events.py1
-rw-r--r--Mac/Lib/lib-compat/Fonts.py1
-rw-r--r--Mac/Lib/lib-compat/Help.py1
-rw-r--r--Mac/Lib/lib-compat/Icn.py1
-rw-r--r--Mac/Lib/lib-compat/Icons.py1
-rw-r--r--Mac/Lib/lib-compat/Lists.py1
-rw-r--r--Mac/Lib/lib-compat/MacTextEditor.py1
-rw-r--r--Mac/Lib/lib-compat/MediaDescr.py1
-rw-r--r--Mac/Lib/lib-compat/Menu.py1
-rw-r--r--Mac/Lib/lib-compat/Menus.py1
-rw-r--r--Mac/Lib/lib-compat/Mlte.py1
-rw-r--r--Mac/Lib/lib-compat/QDOffscreen.py1
-rw-r--r--Mac/Lib/lib-compat/Qt.py1
-rw-r--r--Mac/Lib/lib-compat/QuickDraw.py1
-rw-r--r--Mac/Lib/lib-compat/QuickTime.py1
-rw-r--r--Mac/Lib/lib-compat/Resources.py1
-rw-r--r--Mac/Lib/lib-compat/Snd.py1
-rw-r--r--Mac/Lib/lib-compat/Sound.py1
-rw-r--r--Mac/Lib/lib-compat/TE.py1
-rw-r--r--Mac/Lib/lib-compat/TextEdit.py1
-rw-r--r--Mac/Lib/lib-compat/Win.py1
-rw-r--r--Mac/Lib/lib-compat/Windows.py1
37 files changed, 37 insertions, 0 deletions
diff --git a/Mac/Lib/lib-compat/AE.py b/Mac/Lib/lib-compat/AE.py
new file mode 100644
index 0000000000..f30e2a1d0e
--- /dev/null
+++ b/Mac/Lib/lib-compat/AE.py
@@ -0,0 +1 @@
+from Carbon.AE import *
diff --git a/Mac/Lib/lib-compat/App.py b/Mac/Lib/lib-compat/App.py
new file mode 100644
index 0000000000..c6db44a904
--- /dev/null
+++ b/Mac/Lib/lib-compat/App.py
@@ -0,0 +1 @@
+from Carbon.App import *
diff --git a/Mac/Lib/lib-compat/Appearance.py b/Mac/Lib/lib-compat/Appearance.py
new file mode 100644
index 0000000000..1cedc1ef43
--- /dev/null
+++ b/Mac/Lib/lib-compat/Appearance.py
@@ -0,0 +1 @@
+from Carbon.Appearance import *
diff --git a/Mac/Lib/lib-compat/AppleEvents.py b/Mac/Lib/lib-compat/AppleEvents.py
new file mode 100644
index 0000000000..4cf9e40af6
--- /dev/null
+++ b/Mac/Lib/lib-compat/AppleEvents.py
@@ -0,0 +1 @@
+from Carbon.AppleEvents import *
diff --git a/Mac/Lib/lib-compat/Balloons.py b/Mac/Lib/lib-compat/Balloons.py
new file mode 100644
index 0000000000..fab32a7c1f
--- /dev/null
+++ b/Mac/Lib/lib-compat/Balloons.py
@@ -0,0 +1 @@
+from Carbon.Balloons import *
diff --git a/Mac/Lib/lib-compat/CF.py b/Mac/Lib/lib-compat/CF.py
new file mode 100644
index 0000000000..190aaa4956
--- /dev/null
+++ b/Mac/Lib/lib-compat/CF.py
@@ -0,0 +1 @@
+from Carbon.CF import *
diff --git a/Mac/Lib/lib-compat/Cm.py b/Mac/Lib/lib-compat/Cm.py
new file mode 100644
index 0000000000..38865025e5
--- /dev/null
+++ b/Mac/Lib/lib-compat/Cm.py
@@ -0,0 +1 @@
+from Carbon.Cm import *
diff --git a/Mac/Lib/lib-compat/Components.py b/Mac/Lib/lib-compat/Components.py
new file mode 100644
index 0000000000..904b6bdd27
--- /dev/null
+++ b/Mac/Lib/lib-compat/Components.py
@@ -0,0 +1 @@
+from Carbon.Components import *
diff --git a/Mac/Lib/lib-compat/ControlAccessor.py b/Mac/Lib/lib-compat/ControlAccessor.py
new file mode 100644
index 0000000000..29019f8b13
--- /dev/null
+++ b/Mac/Lib/lib-compat/ControlAccessor.py
@@ -0,0 +1 @@
+from Carbon.ControlAccessor import *
diff --git a/Mac/Lib/lib-compat/Controls.py b/Mac/Lib/lib-compat/Controls.py
new file mode 100644
index 0000000000..4c7a63ce54
--- /dev/null
+++ b/Mac/Lib/lib-compat/Controls.py
@@ -0,0 +1 @@
+from Carbon.Controls import *
diff --git a/Mac/Lib/lib-compat/Ctl.py b/Mac/Lib/lib-compat/Ctl.py
new file mode 100644
index 0000000000..ac92302b43
--- /dev/null
+++ b/Mac/Lib/lib-compat/Ctl.py
@@ -0,0 +1 @@
+from Carbon.Ctl import *
diff --git a/Mac/Lib/lib-compat/Dialogs.py b/Mac/Lib/lib-compat/Dialogs.py
new file mode 100644
index 0000000000..9f724f7874
--- /dev/null
+++ b/Mac/Lib/lib-compat/Dialogs.py
@@ -0,0 +1 @@
+from Carbon.Dialogs import *
diff --git a/Mac/Lib/lib-compat/Dlg.py b/Mac/Lib/lib-compat/Dlg.py
new file mode 100644
index 0000000000..57a353409f
--- /dev/null
+++ b/Mac/Lib/lib-compat/Dlg.py
@@ -0,0 +1 @@
+from Carbon.Dlg import *
diff --git a/Mac/Lib/lib-compat/Drag.py b/Mac/Lib/lib-compat/Drag.py
new file mode 100644
index 0000000000..4e24db0898
--- /dev/null
+++ b/Mac/Lib/lib-compat/Drag.py
@@ -0,0 +1 @@
+from Carbon.Drag import *
diff --git a/Mac/Lib/lib-compat/Dragconst.py b/Mac/Lib/lib-compat/Dragconst.py
new file mode 100644
index 0000000000..6a787b9aa4
--- /dev/null
+++ b/Mac/Lib/lib-compat/Dragconst.py
@@ -0,0 +1 @@
+from Carbon.Dragconst import *
diff --git a/Mac/Lib/lib-compat/Events.py b/Mac/Lib/lib-compat/Events.py
new file mode 100644
index 0000000000..47b38342d6
--- /dev/null
+++ b/Mac/Lib/lib-compat/Events.py
@@ -0,0 +1 @@
+from Carbon.Events import *
diff --git a/Mac/Lib/lib-compat/Fonts.py b/Mac/Lib/lib-compat/Fonts.py
new file mode 100644
index 0000000000..f0a9a52241
--- /dev/null
+++ b/Mac/Lib/lib-compat/Fonts.py
@@ -0,0 +1 @@
+from Carbon.Fonts import *
diff --git a/Mac/Lib/lib-compat/Help.py b/Mac/Lib/lib-compat/Help.py
new file mode 100644
index 0000000000..fb2ac271d9
--- /dev/null
+++ b/Mac/Lib/lib-compat/Help.py
@@ -0,0 +1 @@
+from Carbon.Help import *
diff --git a/Mac/Lib/lib-compat/Icn.py b/Mac/Lib/lib-compat/Icn.py
new file mode 100644
index 0000000000..0e3b44d44e
--- /dev/null
+++ b/Mac/Lib/lib-compat/Icn.py
@@ -0,0 +1 @@
+from Carbon.Icn import *
diff --git a/Mac/Lib/lib-compat/Icons.py b/Mac/Lib/lib-compat/Icons.py
new file mode 100644
index 0000000000..2a310c0f40
--- /dev/null
+++ b/Mac/Lib/lib-compat/Icons.py
@@ -0,0 +1 @@
+from Carbon.Icons import *
diff --git a/Mac/Lib/lib-compat/Lists.py b/Mac/Lib/lib-compat/Lists.py
new file mode 100644
index 0000000000..55155995df
--- /dev/null
+++ b/Mac/Lib/lib-compat/Lists.py
@@ -0,0 +1 @@
+from Carbon.Lists import *
diff --git a/Mac/Lib/lib-compat/MacTextEditor.py b/Mac/Lib/lib-compat/MacTextEditor.py
new file mode 100644
index 0000000000..d9f7226f63
--- /dev/null
+++ b/Mac/Lib/lib-compat/MacTextEditor.py
@@ -0,0 +1 @@
+from Carbon.MacTextEditor import *
diff --git a/Mac/Lib/lib-compat/MediaDescr.py b/Mac/Lib/lib-compat/MediaDescr.py
new file mode 100644
index 0000000000..a188c80c48
--- /dev/null
+++ b/Mac/Lib/lib-compat/MediaDescr.py
@@ -0,0 +1 @@
+from Carbon.MediaDescr import *
diff --git a/Mac/Lib/lib-compat/Menu.py b/Mac/Lib/lib-compat/Menu.py
new file mode 100644
index 0000000000..9163f6d9c3
--- /dev/null
+++ b/Mac/Lib/lib-compat/Menu.py
@@ -0,0 +1 @@
+from Carbon.Menu import *
diff --git a/Mac/Lib/lib-compat/Menus.py b/Mac/Lib/lib-compat/Menus.py
new file mode 100644
index 0000000000..a3c6cfcc71
--- /dev/null
+++ b/Mac/Lib/lib-compat/Menus.py
@@ -0,0 +1 @@
+from Carbon.Menus import *
diff --git a/Mac/Lib/lib-compat/Mlte.py b/Mac/Lib/lib-compat/Mlte.py
new file mode 100644
index 0000000000..2e354cdf7a
--- /dev/null
+++ b/Mac/Lib/lib-compat/Mlte.py
@@ -0,0 +1 @@
+from Carbon.Mlte import *
diff --git a/Mac/Lib/lib-compat/QDOffscreen.py b/Mac/Lib/lib-compat/QDOffscreen.py
new file mode 100644
index 0000000000..e902e4b6c9
--- /dev/null
+++ b/Mac/Lib/lib-compat/QDOffscreen.py
@@ -0,0 +1 @@
+from Carbon.QDOffscreen import *
diff --git a/Mac/Lib/lib-compat/Qt.py b/Mac/Lib/lib-compat/Qt.py
new file mode 100644
index 0000000000..a694792c00
--- /dev/null
+++ b/Mac/Lib/lib-compat/Qt.py
@@ -0,0 +1 @@
+from Carbon.Qt import *
diff --git a/Mac/Lib/lib-compat/QuickDraw.py b/Mac/Lib/lib-compat/QuickDraw.py
new file mode 100644
index 0000000000..d543183b24
--- /dev/null
+++ b/Mac/Lib/lib-compat/QuickDraw.py
@@ -0,0 +1 @@
+from Carbon.QuickDraw import *
diff --git a/Mac/Lib/lib-compat/QuickTime.py b/Mac/Lib/lib-compat/QuickTime.py
new file mode 100644
index 0000000000..80e1bcc671
--- /dev/null
+++ b/Mac/Lib/lib-compat/QuickTime.py
@@ -0,0 +1 @@
+from Carbon.QuickTime import *
diff --git a/Mac/Lib/lib-compat/Resources.py b/Mac/Lib/lib-compat/Resources.py
new file mode 100644
index 0000000000..e4540d9ab4
--- /dev/null
+++ b/Mac/Lib/lib-compat/Resources.py
@@ -0,0 +1 @@
+from Carbon.Resources import *
diff --git a/Mac/Lib/lib-compat/Snd.py b/Mac/Lib/lib-compat/Snd.py
new file mode 100644
index 0000000000..9c30004251
--- /dev/null
+++ b/Mac/Lib/lib-compat/Snd.py
@@ -0,0 +1 @@
+from Carbon.Snd import *
diff --git a/Mac/Lib/lib-compat/Sound.py b/Mac/Lib/lib-compat/Sound.py
new file mode 100644
index 0000000000..fc3c3bb3f1
--- /dev/null
+++ b/Mac/Lib/lib-compat/Sound.py
@@ -0,0 +1 @@
+from Carbon.Sound import *
diff --git a/Mac/Lib/lib-compat/TE.py b/Mac/Lib/lib-compat/TE.py
new file mode 100644
index 0000000000..fcadaf8730
--- /dev/null
+++ b/Mac/Lib/lib-compat/TE.py
@@ -0,0 +1 @@
+from Carbon.TE import *
diff --git a/Mac/Lib/lib-compat/TextEdit.py b/Mac/Lib/lib-compat/TextEdit.py
new file mode 100644
index 0000000000..b1c3fbf67d
--- /dev/null
+++ b/Mac/Lib/lib-compat/TextEdit.py
@@ -0,0 +1 @@
+from Carbon.TextEdit import *
diff --git a/Mac/Lib/lib-compat/Win.py b/Mac/Lib/lib-compat/Win.py
new file mode 100644
index 0000000000..f8e64dd10b
--- /dev/null
+++ b/Mac/Lib/lib-compat/Win.py
@@ -0,0 +1 @@
+from Carbon.Win import *
diff --git a/Mac/Lib/lib-compat/Windows.py b/Mac/Lib/lib-compat/Windows.py
new file mode 100644
index 0000000000..06da2f14e4
--- /dev/null
+++ b/Mac/Lib/lib-compat/Windows.py
@@ -0,0 +1 @@
+from Carbon.Windows import *