Fixup windows newlines.

This commit is contained in:
Georg Brandl
2014-09-21 20:23:24 +02:00
parent df53ece2f7
commit 24d303706f
15 changed files with 1374 additions and 1374 deletions

View File

@@ -1,7 +1,7 @@
from __future__ import absolute_import
from .mod1 import func1, Class1
from .mod2 import (
func2,
Class2,
)
from __future__ import absolute_import
from .mod1 import func1, Class1
from .mod2 import (
func2,
Class2,
)

View File

@@ -1,15 +1,15 @@
"""
mod1
"""
def func1(a, b):
"""
this is func1
"""
return a, b
class Class1(object):
"""
this is Class1
"""
"""
mod1
"""
def func1(a, b):
"""
this is func1
"""
return a, b
class Class1(object):
"""
this is Class1
"""

View File

@@ -1,15 +1,15 @@
"""
mod2
"""
def func2(a, b):
"""
this is func2
"""
return a, b
class Class2(object):
"""
this is Class2
"""
"""
mod2
"""
def func2(a, b):
"""
this is func2
"""
return a, b
class Class2(object):
"""
this is Class2
"""