You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
6 lines
247 B
Python
6 lines
247 B
Python
# Python 3.6, uses rule:
|
|
# genexpr ::= load_closure load_genexpr LOAD_CONST
|
|
# MAKE_FUNCTION_CLOSURE expr GET_ITER CALL_FUNCTION_1
|
|
def __sub__(self, other): # SList()-other
|
|
return self.__class__(i for i in self if i not in other)
|