1
0
forked from VimPlug/jedi

the parser in general now cares for carriage return/new line combinations

This commit is contained in:
Dave Halter
2014-05-04 12:32:02 +02:00
parent f64b309ff0
commit fcd8b25d3d
2 changed files with 5 additions and 6 deletions

View File

@@ -408,7 +408,6 @@ class _Importer(object):
path += '/__init__.py'
with open(path, 'rb') as f:
source = f.read()
source = source.replace(b'\n', b'\r\n')
else:
source = current_namespace[0].read()
current_namespace[0].close()