[issue36690] A typing error in demo rpython.py

2019-04-22 Thread Berker Peksag
Berker Peksag added the comment: Thank you! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36690] A typing error in demo rpython.py

2019-04-22 Thread Berker Peksag
Berker Peksag added the comment: New changeset 5407aaf18b8d33d0a327991db366457ac6fead2d by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903) https://github.com/python/cpython/commit/5407aaf18b8d33d0a327991db366457ac6fead2d

[issue36690] A typing error in demo rpython.py

2019-04-22 Thread Berker Peksag
Berker Peksag added the comment: New changeset d59b662e490d3fae662c5f81fa5248f0445d2158 by Berker Peksag (周家未) in branch 'master': bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903) https://github.com/python/cpython/commit/d59b662e490d3fae662c5f81fa5248f0445d2158 -- nosy: +berke

[issue36690] A typing error in demo rpython.py

2019-04-22 Thread miss-islington
Change by miss-islington : -- pull_requests: +12833 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36690] A typing error in demo rpython.py

2019-04-22 Thread SilentGhost
Change by SilentGhost : -- nosy: +gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue36690] A typing error in demo rpython.py

2019-04-22 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +12831 stage: needs patch -> patch review ___ Python tracker ___ ___ Py

[issue36690] A typing error in demo rpython.py

2019-04-21 Thread SilentGhost
Change by SilentGhost : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue36690] A typing error in demo rpython.py

2019-04-21 Thread SilentGhost
SilentGhost added the comment: Would you be interested in submitting a PR on github? Guidelines can be found on https://devguide.python.org/pullrequest/ if you're not sure how to proceed. -- nosy: +SilentGhost stage: -> needs patch type: crash -> behavior versions: +Python 3.7, Pytho

[issue36690] A typing error in demo rpython.py

2019-04-21 Thread jiawei zhou
New submission from jiawei zhou : Hi. There is an error in file `Tools/demo/rpython.py` at line 22. The original statement is `port = int(port[i+1:])`, but it will crash if the port is specified as parameters. The correct code should be `port = int(host[i+1:])`. Then the program can read spe