You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 09:22:40 +08:00
9 lines
146 B
Python
9 lines
146 B
Python
# Issue #162
|
|
def x(s):
|
|
return {k: v
|
|
for (k, v) in s
|
|
if not k.startswith('_')
|
|
}
|
|
|
|
assert x((('_foo', None),)) == {}
|