About 10,800,000 results
Open links in new tab
  1. How do I open Python IDLE (Shell WIndow) in WIndows 10?

    To get the the idle edit window from the shell window is very simple if you know how. Here's how: Windows search for "idle" Click 'enter' idle shell appears click options in idle shell click …

  2. Is there a way to clear Python's IDLE window? - Stack Overflow

    I know there's a similar topic about the Python console, but I do not know if they are the same. I tried system("clear") and it didn't work here. How do I clear Python's IDLE window?

  3. Is there a timeout for idle PostgreSQL connections?

    For setting timeouts, as @Doon suggested see How to close idle connections in PostgreSQL automatically?, which advises you to use PgBouncer to proxy for PostgreSQL and manage …

  4. user interface - Python error - IDLE's subprocess didn't make ...

    I installed Python, latest version 3.4. and I am trying to open Python IDLE (GUI) mode, so when I open I get message "IDLE's subprocess didn't make connection. Either IDLE can't start or …

  5. Install python modules/package using IDLE on Windows

    Install python modules/package using IDLE on Windows Asked 10 years, 11 months ago Modified 2 years, 2 months ago Viewed 217k times

  6. How to close idle connections in PostgreSQL automatically?

    Some clients connect to our postgresql database but leave the connections opened. Is it possible to tell Postgresql to close those connection after a certain amount of inactivity ? TL;DR IF …

  7. How to start IDLE (Python editor) without using the shortcut on …

    A new window will appears, and you will see the shortcut of Idle (Python GUI) Right click, hold down and pull out to desktop to create a shortcut of Python GUI on desktop.

  8. Default working directory for Python IDLE? - Stack Overflow

    Here's a way to reset IDLE's default working directory for MacOS if you launch Idle as an application by double-clicking it. You need a different solution if you launch Idle from a …

  9. When running a python script in IDLE, is there a way to pass in …

    I'm testing some python code that parses command line input. Is there a way to pass this input in through IDLE? Currently I'm saving in the IDLE editor and running from a command prompt. …

  10. How to stop Python closing immediately when executed in …

    The -i options says to switch to interactive mode (with >>> prompt) after the program finishes. One can then exit or interact with glocal objects. Running code from an IDLE editor has the …