A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://mail.python.org/pipermail/python-dev/2003-May/035892.html below:

[Python-Dev] KeyboardInterrupt on Windows

[Python-Dev] KeyboardInterrupt on Windows [Python-Dev] KeyboardInterrupt on WindowsNeal Norwitz neal@metaslash.com
Fri, 30 May 2003 16:40:01 -0400
On Fri, May 30, 2003 at 04:35:53PM -0400, Guido van Rossum wrote:
> I received this problem report (Kurt is the IDLEFORK developer).  Does
> anybody know what could be the matter here?  What changed recently???

>        while 1: pass
> 
> doesn't respond to a KeyboardInterrupt on Python2.3b1 on either
> WinXP or W2K.

Could this be from the optimization Raymond did:

>>> def f():
...  while 1: pass


>>> dis.dis(f)
  2           0 SETUP_LOOP              12 (to 15)
              3 JUMP_FORWARD             4 (to 10)
              6 JUMP_IF_FALSE            4 (to 13)
              9 POP_TOP
        >>   10 JUMP_ABSOLUTE           10
        >>   13 POP_TOP
             14 POP_BLOCK
        >>   15 LOAD_CONST               0 (None)
             18 RETURN_VALUE

3 jumps to 10, 10 jumps to itself unless I'm reading this wrong.

See Python/compile.c::optimize_code (starting around line 339)

Neal



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4