This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xtreak
Recipients Mark.Shannon, nedbat, xtreak
Date 2019-12-21.14:52:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1576939960.53.0.811375595882.issue39114@roundup.psfhosted.org>
In-reply-to
Content
Looking at changes to alpha2 I think it bisects to https://github.com/python/cpython/pull/6641


➜  cpython git:(5dcc06f6e0) git checkout fee552669f21ca294f57fe0df826945edc779090 && make -s -j4 > /dev/null 
Previous HEAD position was 5dcc06f6e0... bpo-38858: Allocate small integers on the heap (GH-17301)
HEAD is now at fee552669f... Produce cleaner bytecode for 'with' and 'async with' by generating separate code for normal and exceptional paths. (#6641)
➜  cpython git:(fee552669f) ./python ../backups/bpo39114.py                                                 
3.9.0a1+ (tags/v3.9.0a1-43-gfee552669f:fee552669f, Dec 21 2019, 20:18:54) 
[GCC 4.8.4]
call 12: def finally_return():
line 13:     try:
line 14:         return 14
line 16:         a.append(16)
line 14:         return 14
line 16:         a.append(16)
retu 16:         a.append(16)
➜  cpython git:(fee552669f) git checkout fee552669f21ca294f57fe0df826945edc779090~1 && make -s -j4 > /dev/null
Previous HEAD position was fee552669f... Produce cleaner bytecode for 'with' and 'async with' by generating separate code for normal and exceptional paths. (#6641)
HEAD is now at 5dcc06f6e0... bpo-38858: Allocate small integers on the heap (GH-17301)
➜  cpython git:(5dcc06f6e0) ./python ../backups/bpo39114.py                                                   
3.9.0a1+ (tags/v3.9.0a1-42-g5dcc06f6e0:5dcc06f6e0, Dec 21 2019, 20:21:07) 
[GCC 4.8.4]
call 12: def finally_return():
line 13:     try:
line 14:         return 14
line 16:         a.append(16)
line 14:         return 14
retu 14:         return 14
History
Date User Action Args
2019-12-21 14:52:40xtreaksetrecipients: + xtreak, nedbat, Mark.Shannon
2019-12-21 14:52:40xtreaksetmessageid: <1576939960.53.0.811375595882.issue39114@roundup.psfhosted.org>
2019-12-21 14:52:40xtreaklinkissue39114 messages
2019-12-21 14:52:40xtreakcreate