Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
26e67b0d
Commit
26e67b0d
authored
Mar 27, 1992
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't import fl (it tries to initialize GL) but assume it's always v2.0.
parent
6ff2e90c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
12 deletions
+14
-12
Lib/irix5/FL.py
Lib/irix5/FL.py
+7
-6
Lib/plat-irix5/FL.py
Lib/plat-irix5/FL.py
+7
-6
No files found.
Lib/irix5/FL.py
View file @
26e67b0d
...
...
@@ -3,12 +3,13 @@
# Recommended use: import FL; ... FL.NORMAL_BOX ... etc.
# Alternate use: from FL import *; ... NORMAL_BOX ... etc.
import
fl
try
:
_v20
=
(
fl
.
get_rgbmode
<>
None
)
except
:
_v20
=
0
del
fl
_v20
=
1
##import fl
##try:
## _v20 = (fl.get_rgbmode <> None)
##except:
## _v20 = 0
##del fl
NULL
=
0
FALSE
=
0
...
...
Lib/plat-irix5/FL.py
View file @
26e67b0d
...
...
@@ -3,12 +3,13 @@
# Recommended use: import FL; ... FL.NORMAL_BOX ... etc.
# Alternate use: from FL import *; ... NORMAL_BOX ... etc.
import
fl
try
:
_v20
=
(
fl
.
get_rgbmode
<>
None
)
except
:
_v20
=
0
del
fl
_v20
=
1
##import fl
##try:
## _v20 = (fl.get_rgbmode <> None)
##except:
## _v20 = 0
##del fl
NULL
=
0
FALSE
=
0
...
...
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