[issue36480] .strip() unexpected output on Windows

2021-03-02 Thread Zachary Ware
Change by Zachary Ware : Removed file: https://bugs.python.org/file49847/tac.eml ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36480] .strip() unexpected output on Windows

2021-03-02 Thread Cody Fox
Change by Cody Fox : Added file: https://bugs.python.org/file49847/tac.eml ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36480] .strip() unexpected output on Windows

2019-03-30 Thread Eric V. Smith
Change by Eric V. Smith : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue36480] .strip() unexpected output on Windows

2019-03-30 Thread 78
78 <78alphadevi...@gmail.com> added the comment: I have read the documentation. It didn't function near what I thought it did. I've never heard it stripping front and back characters in tutorials. I solely admit I was wrong in assuming its function. On Sat, Mar 30, 2019, 3:35 PM Eric V. Smith

[issue36480] .strip() unexpected output on Windows

2019-03-30 Thread Eric V. Smith
Eric V. Smith added the comment: I cannot run that example on my computer. Please reduce this to a single line of code, with no imports, that calls .strip() and shows your problem. Ideally you will just use constants, and not computed strings. Something like: >>>

[issue36480] .strip() unexpected output on Windows

2019-03-30 Thread 78
78 <78alphadevi...@gmail.com> added the comment: import binascii import os import re import sys import hashlib import json import codecs import threading import datetime from multiprocessing.pool import ThreadPool try: import PySimpleGUI_Custom as sg except: import PySimpleGUI as sg

[issue36480] .strip() unexpected output on Windows

2019-03-29 Thread Eric V. Smith
Eric V. Smith added the comment: Please provide the exact code to duplicate the problem. I suspect this is a problem with your code, not with str.strip and not with Windows. -- nosy: +eric.smith status: open -> pending ___ Python tracker

[issue36480] .strip() unexpected output on Windows

2019-03-29 Thread 78
New submission from 78 <78alphadevi...@gmail.com>: Using .strip() on windows leads to the first and last character of a word being deleted. Magenta.zip becomes agenta.zi -- components: Windows messages: 339164 nosy: 78Alpha, paul.moore, steve.dower, tim.golden, zach.ware priority: