mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
Fix generator for pypy (#4198)
This commit is contained in:
parent
2cef715921
commit
5ba312555a
|
@ -197,7 +197,7 @@ def _write_class_init(tlobject, kind, type_constructors, builder):
|
||||||
if not tlobject.real_args:
|
if not tlobject.real_args:
|
||||||
return
|
return
|
||||||
|
|
||||||
if any(a.name in __builtins__ for a in tlobject.real_args):
|
if any(hasattr(__builtins__, a.name) for a in tlobject.real_args):
|
||||||
builder.writeln('# noinspection PyShadowingBuiltins')
|
builder.writeln('# noinspection PyShadowingBuiltins')
|
||||||
|
|
||||||
builder.writeln("def __init__({}):", ', '.join(['self'] + args))
|
builder.writeln("def __init__({}):", ', '.join(['self'] + args))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user