Skip to content
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

Prevent creating new console on Windows #346

Merged
merged 1 commit into from
Apr 12, 2018
Merged

Commits on Apr 12, 2018

  1. Prevent creating new console on Windows

    When running Jupyter via pythonw e.g. pythonw -m qtconsole, jupyter_client launches new kernel via python.exe which is a console application on Windows - a side-effect of that is a new empty console window created and shown as long as kernel is running.
    
    This patch adds CREATE_NO_WINDOW 0x08000000 to Windows specific creationflags. This flag is not exported by subprocess module therefore has to be provides numerically.
    nanoant authored and AdamVarian committed Apr 12, 2018
    Configuration menu
    Copy the full SHA
    bf57d23 View commit details
    Browse the repository at this point in the history