-
Notifications
You must be signed in to change notification settings - Fork 637
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unsupported argument found for LIST_EXTEND #489
Comments
Make sure you are using pycdc built with the latest source code |
Yes, I got the latest source code and compiled it with MSYS gcc
|
I see same error, |
I think you're missing at least three bytecode implementations of |
from copy import copy from renpy.display.screen import ScreenDisplayable, get_screen_variant from renpy.exports import loadable, pure, store from renpy.game import context from renpy.store import ImageReference from saga.display.image import Image, placement from saga.display.sdf import SDF pure(f'{name}.placement') @pure def image(fn): if isinstance(fn, str): return Image(fn) return fn @pure def outline(fn, **kwargs): sdf = fn.replace('.png', '.sdf') if not loadable(sdf): return fn return SDF(fn, sdf=sdf, **kwargs) def ref(*args): what = context().images.apply_attributes(None, None, args) return ImageReference(what) def screen(name, *args, _scope=None, _sensitive='False', **kwargs): scr = copy(get_screen_variant(name)) scr.modal = 'False' if _sensitive: scr.sensitive = _sensitive _duplicatable = kwargs.pop('_duplicatable', False) scope = _scope or {'_args': args, '_kwargs': kwargs} def _duplicate(args): return ScreenDisplayable(scr, None, None, alt='', scope=scope) rv = _duplicate(None) if _duplicatable: rv._duplicate = _duplicate rv._duplicatable = True return rv def stage(child, *args, ctrl=(), **kwargs): return store.stage(*args, child=ref(*child, *ctrl), **kwargs) @pure def unscaled(fn): return Image(fn, oversample=1) |
@UJJWALJAAT please use GH code-formatting |
Why |
easy.zip
The text was updated successfully, but these errors were encountered: