Blame SOURCES/fix-issue-28.patch
|
|
d6d35c |
From b3d6ea5ed88b0e6cf9fdb411a14e725665ded92e Mon Sep 17 00:00:00 2001
|
|
|
d6d35c |
From: Tim Lauridsen <timlau@fedoraproject.org>
|
|
|
d6d35c |
Date: Fri, 7 Mar 2014 19:06:40 +0100
|
|
|
d6d35c |
Subject: [PATCH] Fix handling of REM xxxxxxxx as a comment, but REMXXXX is not
|
|
|
d6d35c |
(upstream issue #28)
|
|
|
d6d35c |
|
|
|
d6d35c |
---
|
|
|
d6d35c |
tests/test_ini.py | 3 +--
|
|
|
d6d35c |
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
d6d35c |
|
|
|
d6d35c |
diff --git a/tests/test_ini.py b/tests/test_ini.py
|
|
|
d6d35c |
index 07d4f4e..6d974f0 100644
|
|
|
d6d35c |
--- a/tests/test_ini.py
|
|
|
d6d35c |
+++ b/tests/test_ini.py
|
|
|
d6d35c |
@@ -144,8 +144,7 @@ class test_comment_line(unittest.TestCase):
|
|
|
d6d35c |
'#this is a comment',
|
|
|
d6d35c |
';; this is also a comment',
|
|
|
d6d35c |
'; so is this ',
|
|
|
d6d35c |
- 'Rem and this',
|
|
|
d6d35c |
- 'remthis too!'
|
|
|
d6d35c |
+ 'Rem and this'
|
|
|
d6d35c |
]
|
|
|
d6d35c |
def test_parsing(self):
|
|
|
d6d35c |
for l in self.lines:
|
|
|
d6d35c |
--
|
|
|
d6d35c |
1.8.5.3
|
|
|
d6d35c |
|