diff options
author | James Sexton <TwistedLadder@gmail.com> | 2017-09-30 07:10:31 (GMT) |
---|---|---|
committer | INADA Naoki <methane@users.noreply.github.com> | 2017-09-30 07:10:31 (GMT) |
commit | b24cd055ecb3eea9a15405a6ca72dafc739e6531 (patch) | |
tree | e9f867fac0d88a8e9f5d3caea0d0b067244c35df /Misc | |
parent | 3d2b407da048b14ba6e5eb6079722a785d210590 (diff) | |
download | cpython-b24cd055ecb3eea9a15405a6ca72dafc739e6531.zip cpython-b24cd055ecb3eea9a15405a6ca72dafc739e6531.tar.gz cpython-b24cd055ecb3eea9a15405a6ca72dafc739e6531.tar.bz2 |
bpo-30806 netrc.__repr__() is broken for writing to file (GH-2491)
netrc file format doesn't support quotes and escapes.
See https://linux.die.net/man/5/netrc
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-09-29.bpo-30806.lP5GrH.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-09-29.bpo-30806.lP5GrH.rst b/Misc/NEWS.d/next/Library/2017-09-29.bpo-30806.lP5GrH.rst new file mode 100644 index 0000000..afad1b2 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-09-29.bpo-30806.lP5GrH.rst @@ -0,0 +1 @@ +Fix the string representation of a netrc object. |