Victor Stinner

Results 702 comments of Victor Stinner

@warsaw @gvanrossum: Are you ok with these changes?

I created a separated PR to require C11 and C++11: https://github.com/python/peps/pull/3896

The discussion https://github.com/capi-workgroup/decisions/issues/30 is still on-going, I prefer to close my PR for now.

I'm not convinced by this change. It makes my typical use case more painful: download logs and open them in a text editor (vim). There are now ANSI codes which...

> If it's more important to keep raw logs more readable than rendered logs for Buildbots, then we can just close this. The problem of buildbots is that the web...

To debug the issue, you might try to import `psycopg2` in a subinterpreter. Example to run `print('Hello')` in a subinterpreter: ```py $ ./python >>> import _testcapi >>> _testcapi.run_in_subinterp("print('Hello')") Hello 0...

cc @erlend-aasland @serhiy-storchaka

@serhiy-storchaka: Please review the updated PR. I tried to address most of your comments.