mirror of
https://github.com/python/cpython.git
synced 2025-08-28 20:56:54 +00:00
Windows EOL sequence not converted correctly, encoding error.
Caused file save to fail. Bug 1130. M idlelib/IOBinding.py M idlelib/NEWS.txt
This commit is contained in:
parent
e518bf3c49
commit
3e623ba3ec
2 changed files with 13 additions and 4 deletions
|
@ -242,7 +242,6 @@ class IOBinding:
|
|||
|
||||
eol = r"(\r\n)|\n|\r" # \r\n (Windows), \n (UNIX), or \r (Mac)
|
||||
eol_re = re.compile(eol)
|
||||
eol_convention = os.linesep # Default
|
||||
|
||||
def loadfile(self, filename):
|
||||
try:
|
||||
|
@ -389,9 +388,10 @@ class IOBinding:
|
|||
|
||||
def writefile(self, filename):
|
||||
self.fixlastline()
|
||||
chars = self.encode(self.text.get("1.0", "end-1c"))
|
||||
text = self.text.get("1.0", "end-1c")
|
||||
if self.eol_convention != "\n":
|
||||
chars = chars.replace("\n", self.eol_convention)
|
||||
text = text.replace("\n", self.eol_convention)
|
||||
chars = self.encode(self.text.get("1.0", "end-1c"))
|
||||
try:
|
||||
f = open(filename, "wb")
|
||||
f.write(chars)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue