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
2931bbb5
Commit
2931bbb5
authored
Jun 14, 2003
by
Kurt B. Kaiser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove the 2.2 compatibility module boolcheck.py and related code
M PyShell.py R boolcheck.py M run.py
parent
50afe6d9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
14 deletions
+0
-14
Lib/idlelib/PyShell.py
Lib/idlelib/PyShell.py
+0
-3
Lib/idlelib/boolcheck.py
Lib/idlelib/boolcheck.py
+0
-9
Lib/idlelib/run.py
Lib/idlelib/run.py
+0
-2
No files found.
Lib/idlelib/PyShell.py
View file @
2931bbb5
...
...
@@ -19,9 +19,6 @@ from code import InteractiveInterpreter
from
Tkinter
import
*
import
tkMessageBox
# Preserve 2.2 compatibility for Mac OS X:
import
boolcheck
from
EditorWindow
import
EditorWindow
,
fixwordbreaks
from
FileList
import
FileList
from
ColorDelegator
import
ColorDelegator
...
...
Lib/idlelib/boolcheck.py
deleted
100644 → 0
View file @
50afe6d9
"boolcheck - import this module to ensure True, False, bool() builtins exist."
try
:
True
except
NameError
:
import
__builtin__
__builtin__
.
True
=
1
__builtin__
.
False
=
0
from
operator
import
truth
__builtin__
.
bool
=
truth
Lib/idlelib/run.py
View file @
2931bbb5
...
...
@@ -7,8 +7,6 @@ import thread
import
threading
import
Queue
import
boolcheck
import
CallTips
import
RemoteDebugger
import
RemoteObjectBrowser
...
...
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