Updated multiple Python modules (now in libs and custom_libs directories) and React libraries

This commit is contained in:
morpheus65535 2024-03-03 12:15:23 -05:00 committed by GitHub
parent 9ae684240b
commit 03afeb3470
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3550 changed files with 200757 additions and 117862 deletions

View file

@ -34,7 +34,7 @@ class FileProxy(io.TextIOBase):
line, new_line, text = text.partition("\n")
if new_line:
lines.append("".join(buffer) + line)
del buffer[:]
buffer.clear()
else:
buffer.append(line)
break
@ -52,3 +52,6 @@ class FileProxy(io.TextIOBase):
if output:
self.__console.print(output)
del self.__buffer[:]
def fileno(self) -> int:
return self.__file.fileno()