Merge pull request #232 from tkf/unicode-has-no-generate_call_path

Fix: 'unicode' object has no attribute 'generate_call_path'
This commit is contained in:
David Halter
2013-05-23 22:33:02 -07:00
3 changed files with 15 additions and 2 deletions

View File

@@ -329,6 +329,14 @@ class TestRegression(TestBase):
defs = self.goto_definitions("assert")
assert len(defs) == 1
def test_goto_assignments_keyword(self):
"""
Bug: goto assignments on ``in`` used to raise AttributeError::
'unicode' object has no attribute 'generate_call_path'
"""
self.goto_assignments('in')
def test_goto_following_on_imports(self):
s = "import multiprocessing.dummy; multiprocessing.dummy"
g = self.goto_assignments(s)