-
-
Notifications
You must be signed in to change notification settings - Fork 313
Remote server is not connected bug #1268
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
Comments
The following works: import urllib.request
sherlock = urllib.request.urlopen('https://www.gutenberg.org/ebooks/1661.txt.utf-8')
text = sherlock.read()
text = text.decode('utf-8-sig')
for line in text.splitlines():
print(line) |
Fixed in version control. The fix will be included in the next release. In the meantime please use the workaround above. |
pyscripter
added a commit
that referenced
this issue
Oct 18, 2023
Please try v4.3.1 and confirm it fixes the issue. Just replace PyScripter.exe with the one in the zip file. |
Yes, fixed. Thank you.
btw, clicking the link in the email resulted in this:
[image: image.png]
…On Fri, Oct 20, 2023 at 2:00 PM pyscripter ***@***.***> wrote:
Please try v4.3.1
<https://drive.google.com/file/d/1GKYvdBkzhJSqyxQ_JjDDV8ImvBErlGYP/view?usp=share_link>
and confirm it fixes the issue. Just replace PyScripter.exe with the one in
the zip file.
—
Reply to this email directly, view it on GitHub
<#1268 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AALSCZNYWR4DQ553EA3YJ4TYAJYWBAVCNFSM6AAAAAA6DXQZSGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONZSGY4TQMBUGQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#The following seems to Kill PyScripter.
import urllib.request
sherlock = urllib.request.urlopen('https://www.gutenberg.org/ebooks/1661.txt.utf-8')
text = sherlock.read()
text = text.decode('utf-8-sig')
print(text)
The text was updated successfully, but these errors were encountered: