CensoredUsername

Results 214 comments of CensoredUsername

Huh. I tested it with the files you posted and couldn't reproduce the error to begin with (that said, the errors were fairly obvious when I looked at it). >_pickle.PicklingError:...

Does this fix it (in renpycompat.py): ```python class oldset(set): __module__ = "__builtin__" def __reduce__(self): cls, args, state = super().__reduce__() return (set, args, state) ``` ```python class oldfrozenset(frozenset): __module__ = "__builtin__"...

>Removed also the pack parameter from save_global as i figured its unneeded. It's in there due to python 2, where that is the signature of the method it's overriding. Strangely...

update: don't have the time to finish this for 2.0, but it shouldn't be a breaking change once we're in there. Postponing this for now.

I'm really having issues trying to read what this actually changes due to the intermixed cargo fmt changes. Could you make the pull request without them, or base it ontop...

Unfortunately I don't think anyone picked this up. I don't think I'll handle this one myself but I'd be happy to mentor / answer questions if anyone wants to work...

I completely forgot about that one, whoops. I also don't have any idea how up-to-date it is, but it is probably a good starting point!