From 90aa7595b4dd5aa8ddda9ea420f9e8a81cc63866 Mon Sep 17 00:00:00 2001 From: Damien George <damien.p.george@gmail.com> Date: Thu, 16 Apr 2015 22:09:17 +0100 Subject: [PATCH] tests: Convert line endings in fun_name.py from CRLF to LF. --- tests/basics/fun_name.py | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tests/basics/fun_name.py b/tests/basics/fun_name.py index a7f9c6096..7a84fc339 100644 --- a/tests/basics/fun_name.py +++ b/tests/basics/fun_name.py @@ -1,16 +1,16 @@ -def Fun(): - pass - -class A: - def __init__(self): - pass - def Fun(self): - pass - -try: - print(Fun.__name__) - print(A.__init__.__name__) - print(A.Fun.__name__) - print(A().Fun.__name__) -except AttributeError: - print('SKIP') +def Fun(): + pass + +class A: + def __init__(self): + pass + def Fun(self): + pass + +try: + print(Fun.__name__) + print(A.__init__.__name__) + print(A.Fun.__name__) + print(A().Fun.__name__) +except AttributeError: + print('SKIP') -- GitLab