Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
cb35c08e
Commit
cb35c08e
authored
Dec 02, 2010
by
R. David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#10464: fix netrc handling of lines with embedded '#" characters.
Patch by Xuanji Li.
parent
c7dcf5dd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
6 deletions
+23
-6
Lib/netrc.py
Lib/netrc.py
+4
-0
Lib/test/test_netrc.py
Lib/test/test_netrc.py
+16
-6
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/netrc.py
View file @
cb35c08e
...
@@ -34,11 +34,15 @@ class netrc:
...
@@ -34,11 +34,15 @@ class netrc:
def
_parse
(
self
,
file
,
fp
):
def
_parse
(
self
,
file
,
fp
):
lexer
=
shlex
.
shlex
(
fp
)
lexer
=
shlex
.
shlex
(
fp
)
lexer
.
wordchars
+=
r"""!"#$%&'()*+,-./:;<=>?@[\
]^_`{|}~
"""
lexer
.
wordchars
+=
r"""!"#$%&'()*+,-./:;<=>?@[\
]^_`{|}~
"""
lexer.commenters = lexer.commenters.replace('#', '')
while 1:
while 1:
# Look for a machine, default, or macdef top-level keyword
# Look for a machine, default, or macdef top-level keyword
toplevel = tt = lexer.get_token()
toplevel = tt = lexer.get_token()
if not tt:
if not tt:
break
break
elif tt[0] == '#':
fp.readline();
continue;
elif tt == 'machine':
elif tt == 'machine':
entryname = lexer.get_token()
entryname = lexer.get_token()
elif tt == 'default':
elif tt == 'default':
...
...
Lib/test/test_netrc.py
View file @
cb35c08e
...
@@ -3,7 +3,13 @@ import netrc, os, unittest, sys
...
@@ -3,7 +3,13 @@ import netrc, os, unittest, sys
from
test
import
support
from
test
import
support
TEST_NETRC
=
"""
TEST_NETRC
=
"""
#this is a comment
#this is a comment
# this is a comment
machine foo login log1 password pass1 account acct1
machine foo login log1 password pass1 account acct1
machine bar login log1 password pass# account acct1
macdef macro1
macdef macro1
line1
line1
...
@@ -28,17 +34,21 @@ class NetrcTestCase(unittest.TestCase):
...
@@ -28,17 +34,21 @@ class NetrcTestCase(unittest.TestCase):
fp
=
open
(
temp_filename
,
mode
)
fp
=
open
(
temp_filename
,
mode
)
fp
.
write
(
TEST_NETRC
)
fp
.
write
(
TEST_NETRC
)
fp
.
close
()
fp
.
close
()
self
.
nrc
=
netrc
.
netrc
(
temp_filename
)
def
tearDown
(
self
):
def
tearDown
(
self
):
os
.
unlink
(
temp_filename
)
os
.
unlink
(
temp_filename
)
def
test_case_1
(
self
):
def
test_case_1
(
self
):
nrc
=
netrc
.
netrc
(
temp_filename
)
self
.
assertEqual
(
self
.
nrc
.
hosts
[
'foo'
],
(
'log1'
,
'acct1'
,
'pass1'
))
self
.
assertTrue
(
nrc
.
macros
==
{
'macro1'
:[
'line1
\
n
'
,
'line2
\
n
'
],
self
.
assertEqual
(
self
.
nrc
.
hosts
[
'default'
],
(
'log2'
,
None
,
'pass2'
))
'macro2'
:[
'line3
\
n
'
,
'line4
\
n
'
]}
)
def
test_macros
(
self
):
self
.
assertTrue
(
nrc
.
hosts
[
'foo'
]
==
(
'log1'
,
'acct1'
,
'pass1'
))
self
.
assertEqual
(
self
.
nrc
.
macros
,
{
'macro1'
:[
'line1
\
n
'
,
'line2
\
n
'
],
self
.
assertTrue
(
nrc
.
hosts
[
'default'
]
==
(
'log2'
,
None
,
'pass2'
))
'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
():
def
test_main
():
support
.
run_unittest
(
NetrcTestCase
)
support
.
run_unittest
(
NetrcTestCase
)
...
...
Misc/ACKS
View file @
cb35c08e
...
@@ -501,6 +501,7 @@ John Lenton
...
@@ -501,6 +501,7 @@ John Lenton
Christopher Tur Lesniewski-Laas
Christopher Tur Lesniewski-Laas
Mark Levinson
Mark Levinson
William Lewis
William Lewis
Xuanji Li
Robert van Liere
Robert van Liere
Ross Light
Ross Light
Shawn Ligocki
Shawn Ligocki
...
...
Misc/NEWS
View file @
cb35c08e
...
@@ -46,6 +46,8 @@ Core and Builtins
...
@@ -46,6 +46,8 @@ Core and Builtins
Library
Library
-------
-------
- Issue #10464: netrc now correctly handles lines with embedded '#' characters.
- Added itertools.accumulate().
- Added itertools.accumulate().
- Issue #4113: Added custom ``__repr__`` method to ``functools.partial``.
- Issue #4113: Added custom ``__repr__`` method to ``functools.partial``.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment