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
b3dd5485
Commit
b3dd5485
authored
Feb 26, 2009
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove deprecated symtable.Symbol methods
parent
7bee77c8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
31 deletions
+4
-31
Lib/symtable.py
Lib/symtable.py
+0
-15
Lib/test/test_symtable.py
Lib/test/test_symtable.py
+0
-16
Misc/NEWS
Misc/NEWS
+4
-0
No files found.
Lib/symtable.py
View file @
b3dd5485
...
...
@@ -5,7 +5,6 @@ from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
DEF_IMPORT
,
DEF_BOUND
,
OPT_IMPORT_STAR
,
OPT_EXEC
,
OPT_BARE_EXEC
,
SCOPE_OFF
,
SCOPE_MASK
,
FREE
,
GLOBAL_IMPLICIT
,
GLOBAL_EXPLICIT
)
import
warnings
import
weakref
__all__
=
[
"symtable"
,
"SymbolTable"
,
"Class"
,
"Function"
,
"Symbol"
]
...
...
@@ -191,16 +190,6 @@ class Symbol(object):
def
is_global
(
self
):
return
bool
(
self
.
__scope
in
(
GLOBAL_IMPLICIT
,
GLOBAL_EXPLICIT
))
def
is_vararg
(
self
):
warnings
.
warn
(
"is_vararg() is obsolete and will be removed"
,
DeprecationWarning
,
2
)
return
False
def
is_keywordarg
(
self
):
warnings
.
warn
(
"is_keywordarg() is obsolete and will be removed"
,
DeprecationWarning
,
2
)
return
False
def
is_local
(
self
):
return
bool
(
self
.
__flags
&
DEF_BOUND
)
...
...
@@ -213,10 +202,6 @@ class Symbol(object):
def
is_assigned
(
self
):
return
bool
(
self
.
__flags
&
DEF_LOCAL
)
def
is_in_tuple
(
self
):
warnings
.
warn
(
"is_in_tuple() is obsolete and will be removed"
,
DeprecationWarning
,
2
)
def
is_namespace
(
self
):
"""Returns true if name binding introduces new namespace.
...
...
Lib/test/test_symtable.py
View file @
b3dd5485
...
...
@@ -55,22 +55,6 @@ class SymtableTest(unittest.TestCase):
internal
=
find_block
(
spam
,
"internal"
)
foo
=
find_block
(
top
,
"foo"
)
def
test_noops
(
self
):
# Check methods that don't work. They should warn and return False.
def
check
(
w
,
msg
):
self
.
assertEqual
(
str
(
w
.
message
),
msg
)
sym
=
self
.
top
.
lookup
(
"glob"
)
with
test_support
.
check_warnings
()
as
w
:
warnings
.
simplefilter
(
"always"
,
DeprecationWarning
)
self
.
assertFalse
(
sym
.
is_vararg
())
check
(
w
,
"is_vararg() is obsolete and will be removed"
)
w
.
reset
()
self
.
assertFalse
(
sym
.
is_keywordarg
())
check
(
w
,
"is_keywordarg() is obsolete and will be removed"
)
w
.
reset
()
self
.
assertFalse
(
sym
.
is_in_tuple
())
check
(
w
,
"is_in_tuple() is obsolete and will be removed"
)
def
test_type
(
self
):
self
.
assertEqual
(
self
.
top
.
get_type
(),
"module"
)
self
.
assertEqual
(
self
.
Mine
.
get_type
(),
"class"
)
...
...
Misc/NEWS
View file @
b3dd5485
...
...
@@ -165,6 +165,10 @@ Core and Builtins
Library
-------
- Deprecated methods of symtable.Symbol have been removed: is_keywordarg(),
is_vararg(), and is_in_tuple().
- Issue #5316: Fixed buildbot failures introduced by multiple inheritance
in Distutils tests.
...
...
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