mirror of
https://github.com/github/semantic.git
synced 2024-12-21 13:51:44 +03:00
bd939d2579
`identifier` in the Python assignment module was too eager to reduce a nested Attribute into a dotted identifier. Removing it fixes method calls, which now have a unit test.
10 lines
113 B
Python
10 lines
113 B
Python
class Foo():
|
|
def dang():
|
|
return "foo"
|
|
|
|
class Bar():
|
|
def dang():
|
|
return "bar"
|
|
|
|
Bar.dang()
|