Results 399 comments of refi64

Thought: Something like cIRCa?

You need to enable ANSI color codes. Try something like: ```c #include int main() { HANDLE console = GetStdConsole(STD_OUTPUT_HANDLE); DWORD mode; GetConsoleMode(console, &mode); mode |= ENABLE_VIRTUAL_TERMINAL_PROCESSING; SetConsoleMode(console, mode); // ......

TBH it would be cool if Vigil just waited like 5 seconds, sent a SIGINT, and used the resulting `KeyboardInterrupt` traceback to delete the lowest function.

Yeah, but isn't procrastination evil?

Isn't the lack of redemption half of Vigil's gimmick, though?

Well, I always felt that the main reason for this was to allow mypy to be used on already-existing codebases, so the unannotated functions don't need to be type-safe (yet)....

Could a director constructor call really be safe though? e.g.: ```python def func(): A = lambda x: x return A(None) ``` Or even: ```python def func(): return A(1) func.__globals__['A'] =...

Sorry for the delays, I've been a bit occupied elsewhere lately :sweat_smile: I had looked into the nil errors in the tests, but it seemed to specifically come from the...

> I did not fully understand when packageRefs is nil or not So in the original code, this was a slice, thus nil == 0-length. Now, it's an actual object,...

> Could you allow updating your [refi64:split-reflists](https://github.com/refi64/aptly/tree/split-reflists) branch ? then we can reopen your pull request and close this one, or if you like, I can add you to the...