]> granicus.if.org Git - python/commitdiff
#10464: fix netrc handling of lines with embedded '#" characters.
authorR. David Murray <rdmurray@bitdance.com>
Thu, 2 Dec 2010 02:58:07 +0000 (02:58 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Thu, 2 Dec 2010 02:58:07 +0000 (02:58 +0000)
Patch by Xuanji Li.

Lib/netrc.py
Lib/test/test_netrc.py
Misc/ACKS
Misc/NEWS

index 90255df8d3c8e7882e68574e1a06f7555279796d..a60b8b72fb940dabb1a816176f7d0999c2c9d7c9 100644 (file)
@@ -34,11 +34,15 @@ class netrc:
     def _parse(self, file, fp):
         lexer = shlex.shlex(fp)
         lexer.wordchars += r"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
+        lexer.commenters = lexer.commenters.replace('#', '')
         while 1:
             # Look for a machine, default, or macdef top-level keyword
             toplevel = tt = lexer.get_token()
             if not tt:
                 break
+            elif tt[0] == '#':
+                fp.readline();
+                continue;
             elif tt == 'machine':
                 entryname = lexer.get_token()
             elif tt == 'default':
index 21ff88c8e13480d5b03d0bc99a189e5257de29db..da7ec050d25ee7482833963c1fb8e67dace4dfc9 100644 (file)
@@ -3,7 +3,13 @@ import netrc, os, unittest, sys
 from test import support
 
 TEST_NETRC = """
+
+ #this is a comment
+#this is a comment
+# this is a comment
+
 machine foo login log1 password pass1 account acct1
+machine bar login log1 password pass# account acct1
 
 macdef macro1
 line1
@@ -28,17 +34,21 @@ class NetrcTestCase(unittest.TestCase):
         fp = open(temp_filename, mode)
         fp.write(TEST_NETRC)
         fp.close()
+        self.nrc = netrc.netrc(temp_filename)
 
     def tearDown(self):
         os.unlink(temp_filename)
 
     def test_case_1(self):
-        nrc = netrc.netrc(temp_filename)
-        self.assertTrue(nrc.macros == {'macro1':['line1\n', 'line2\n'],
-                                           'macro2':['line3\n', 'line4\n']}
-                                           )
-        self.assertTrue(nrc.hosts['foo'] == ('log1', 'acct1', 'pass1'))
-        self.assertTrue(nrc.hosts['default'] == ('log2', None, 'pass2'))
+        self.assertEqual(self.nrc.hosts['foo'], ('log1', 'acct1', 'pass1'))
+        self.assertEqual(self.nrc.hosts['default'], ('log2', None, 'pass2'))
+
+    def test_macros(self):
+        self.assertEqual(self.nrc.macros, {'macro1':['line1\n', 'line2\n'],
+                                           'macro2':['line3\n', 'line4\n']})
+
+    def test_parses_passwords_with_hash_character(self):
+        self.assertEqual(self.nrc.hosts['bar'], ('log1', 'acct1', 'pass#'))
 
 def test_main():
     support.run_unittest(NetrcTestCase)
index 1aa9613b2c00ac0197d7e24edad4774f242163e4..0f7ed37ab2bb42915bf9beac2e5333abc1e707e0 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -501,6 +501,7 @@ John Lenton
 Christopher Tur Lesniewski-Laas
 Mark Levinson
 William Lewis
+Xuanji Li
 Robert van Liere
 Ross Light
 Shawn Ligocki
index 494087c8837a8f07edfb38b771fdc10bf9c4a019..adec2dff66e1a16f884f4021e57b1eead71ee0cd 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #10464: netrc now correctly handles lines with embedded '#' characters.
+
 - Added itertools.accumulate().
 
 - Issue #4113: Added custom ``__repr__`` method to ``functools.partial``.