AttributeError: 'NoneType' object has no attribute 'write'
See original GitHub issueThis logger keeps setting self.stream = None
causing the next logging statement to fail:
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: None, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
--- Logging error ---
Traceback (most recent call last):
File "F:\Python\lib\logging\__init__.py", line 995, in emit
stream.write(msg)
AttributeError: 'NoneType' object has no attribute 'write'
The file is already 250% above the maximum rotation of 50MB, but cannot be rolled because it is opened on the log viewer.
There is not problem in not rotating because the file is above the maximum rotation size, if the file is locked. The file can keep growing until it is unlocked by other other applications. However, it never should to set the stream logger to None
, making the logging fail randomly with AttributeError: 'NoneType' object has no attribute 'write'
.
I added these lines for debugging:
File: Data/Packages/ConcurrentLogHandler/all/concurrent_log_handler/__init__.py
234:
235: def _close(self):
236: """ Close file stream. Unlike close(), we don't tear anything down, we
237: expect the log to be re-opened after rotation."""
238: if self.stream:
239: try:
240: if not self.stream.closed:
241: # Flushing probably isn't technically necessary, but it feels right
242: self.stream.flush()
243: self.stream.close()
244: finally:
245: sys.stderr.write( "Setting self.stream = None: %s\n" % self.stream )
246: self.stream = None
File: F:/Python/Lib/logging/__init__.py
979:
980: def emit(self, record):
981: """
982: Emit a record.
983:
984: If a formatter is specified, it is used to format the record.
985: The record is then written to the stream with a trailing newline. If
986: exception information is present, it is formatted using
987: traceback.print_exception and appended to the stream. If the stream
988: has an 'encoding' attribute, it is used to determine how to do the
989: output to the stream.
990: """
991: try:
992: msg = self.format(record)
993: sys.stderr.write( "self.stream on StreamHandler: %s\n" % self.stream )
994: stream = self.stream
995: stream.write(msg)
996: stream.write(self.terminator)
Full log:
[pyls] 16:12:55:0730762 Logging to the file F:\SublimeText\debug2.txt
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: None, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
--- Logging error ---
Traceback (most recent call last):
File "F:\Python\lib\logging\__init__.py", line 995, in emit
stream.write(msg)
AttributeError: 'NoneType' object has no attribute 'write'
Call stack:
File "F:\Python\Scripts\pyls-script.py", line 11, in <module>
load_entry_point('python-language-server', 'console_scripts', 'pyls')()
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\__main__.py", line 54, in main
start_io_lang_server(stdin, stdout, PythonLanguageServer)
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\python_ls.py", line 62, in start_io_lang_server
server.start()
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\python_ls.py", line 88, in start
self.rpc_manager.start()
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\rpc_manager.py", line 46, in start
self.consume_requests()
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\rpc_manager.py", line 106, in consume_requests
self._handle_request(message)
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\rpc_manager.py", line 123, in _handle_request
maybe_handler = self._message_handler(request.method, request.params if request.params is not None else {})
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\python_ls.py", line 106, in handle_request
return getattr(self, method_call)(**params)
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\python_ls.py", line 167, in m_initialize
self._dispatchers = self._hook('pyls_dispatchers')
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\python_ls.py", line 128, in _hook
log.debug("PythonLanguageServer, self.config: %s", self.config)
File "F:\Python\lib\logging\__init__.py", line 1297, in debug
self._log(DEBUG, msg, args, **kwargs)
File "F:\SublimeText\Data\Packages\DebugTools\all\debug_tools\logger.py", line 574, in _log
super()._log( level, msg, args, exc_info, extra, stack_info )
Message: 'PythonLanguageServer, self.config: %s'
Arguments: (<pyls.config.config.Config object at 0x00000201F5902A20>,)
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: None, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
--- Logging error ---
Traceback (most recent call last):
File "F:\Python\lib\logging\__init__.py", line 995, in emit
stream.write(msg)
AttributeError: 'NoneType' object has no attribute 'write'
Call stack:
File "F:\Python\Scripts\pyls-script.py", line 11, in <module>
load_entry_point('python-language-server', 'console_scripts', 'pyls')()
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\__main__.py", line 54, in main
start_io_lang_server(stdin, stdout, PythonLanguageServer)
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\python_ls.py", line 62, in start_io_lang_server
server.start()
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\python_ls.py", line 88, in start
self.rpc_manager.start()
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\rpc_manager.py", line 46, in start
self.consume_requests()
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\rpc_manager.py", line 106, in consume_requests
self._handle_request(message)
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\rpc_manager.py", line 123, in _handle_request
maybe_handler = self._message_handler(request.method, request.params if request.params is not None else {})
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\python_ls.py", line 106, in handle_request
return getattr(self, method_call)(**params)
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\python_ls.py", line 168, in m_initialize
self._hook('pyls_initialize')
File "d:\user\dropbox\softwareversioning\python-language-server\pyls\python_ls.py", line 128, in _hook
log.debug("PythonLanguageServer, self.config: %s", self.config)
File "F:\Python\lib\logging\__init__.py", line 1297, in debug
self._log(DEBUG, msg, args, **kwargs)
File "F:\SublimeText\Data\Packages\DebugTools\all\debug_tools\logger.py", line 574, in _log
super()._log( level, msg, args, exc_info, extra, stack_info )
Message: 'PythonLanguageServer, self.config: %s'
Arguments: (<pyls.config.config.Config object at 0x00000201F5902A20>,)
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
self.stream on StreamHandler: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>, sys.stderr: <_io.TextIOWrapper name='<stderr>' mode='w' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Setting self.stream = None: <_io.TextIOWrapper name='F:\\SublimeText\\debug2.txt' mode='a' encoding='cp1252'>
Issue Analytics
- State:
- Created 6 years ago
- Comments:13 (7 by maintainers)
Top Results From Across the Web
Why do I get AttributeError: 'NoneType' object has no attribute ...
It means the object you are trying to access None . None is a Null variable ...
Read more >AttributeError: 'NoneType' object has no attribute 'write' after ...
Attribute errors in Python are generally raised when you try to access or call an attribute that a particular object type doesn't possess....
Read more >AttributeError : 'NoneType' object has no attribute 'write' · Issue ...
It could be that stdout or stderr has been set to None , so the print/input fails. In which environment does this issue...
Read more >AttributeError: 'NoneType' object has no attribute 'write'
You received this message because you are subscribed to the Google Groups "Modelica Buildings" group. To unsubscribe from this group and stop receiving ......
Read more >[FIXED] AttributeError: 'NoneType' object has no attribute ...
Hence, AttributeError: 'NoneType' object has no attribute 'something' error occurs when the type of object you are referencing is None.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I just pushed release 0.9.8 which should fix this. You might want to re-verify it. Thanks for the bug report!
Great, thanks for the update. I’m glad there’s a workaround. I would like to keep this issue open until we can find a way to fix this scenario.