[Python-modules-commits] [python-pynzb] 08/11: merge patched into master

Carl Suster arcresu-guest at moszumanska.debian.org
Thu Jan 12 00:43:28 UTC 2017


This is an automated email from the git hooks/post-receive script.

arcresu-guest pushed a commit to branch master
in repository python-pynzb.

commit 192a9f99772f22157d4fa1734363ff07ac5fd863
Merge: 54650b5 351c51b
Author: Carl Suster <carl at contraflo.ws>
Date:   Wed Jan 11 23:02:41 2017 +1100

    merge patched into master

 debian/.git-dpm                                               |  4 ++--
 debian/patches/0003-give-lxml-etree-BytesIO-in-Python-3.patch | 10 +++++-----
 pynzb/lxml_nzb.py                                             |  6 +++---
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --cc debian/.git-dpm
index e8ed9aa,0000000..3b2ef42
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,8 -1,0 +1,8 @@@
 +# see git-dpm(1) from git-dpm package
- 5bb9aae805947e77215ff8c433d52a987dbf75a0
- 5bb9aae805947e77215ff8c433d52a987dbf75a0
++351c51b882bf00d1db03de5a2419372e2e31d6cf
++351c51b882bf00d1db03de5a2419372e2e31d6cf
 +124074ce42e5d83c71e028a8757afb392cc96548
 +124074ce42e5d83c71e028a8757afb392cc96548
 +python-pynzb_0.1.0.orig.tar.gz
 +cf39d7f32c15f281ab81b0043b4068d101a2cd1f
 +5598
diff --cc debian/patches/0003-give-lxml-etree-BytesIO-in-Python-3.patch
index 0f86fce,0000000..32746fd
mode 100644,000000..100644
--- a/debian/patches/0003-give-lxml-etree-BytesIO-in-Python-3.patch
+++ b/debian/patches/0003-give-lxml-etree-BytesIO-in-Python-3.patch
@@@ -1,40 -1,0 +1,40 @@@
- From 5bb9aae805947e77215ff8c433d52a987dbf75a0 Mon Sep 17 00:00:00 2001
++From 351c51b882bf00d1db03de5a2419372e2e31d6cf Mon Sep 17 00:00:00 2001
 +From: Carl Suster <carl at contraflo.ws>
 +Date: Wed, 11 Jan 2017 22:34:34 +1100
 +Subject: give lxml etree BytesIO in Python 3
 +
 +The lxml etree API changed in Python 3 to take BytesIO instead of
 +StringIO. This patch maintains the original behaviour in Python 2 but
 +switches to BytesIO in Python 3, decoding the XML data as UTF-8.
 +---
 + pynzb/lxml_nzb.py | 16 +++++++++++-----
 + 1 file changed, 11 insertions(+), 5 deletions(-)
 +
 +diff --git a/pynzb/lxml_nzb.py b/pynzb/lxml_nzb.py
- index 790671d..b1d0dc6 100644
++index 790671d..9d76c4a 100644
 +--- a/pynzb/lxml_nzb.py
 ++++ b/pynzb/lxml_nzb.py
 +@@ -6,11 +6,17 @@ except ImportError:
 +     raise ImportError("You must have lxml installed before you can use the " +
 +         "lxml NZB parser.")
 + 
 +-try:
 +-    from cStringIO import StringIO
 +-except ImportError:
 +-    from StringIO import StringIO
 ++import sys
 ++if sys.version_info.major < 3:
 ++    try:
 ++        from cStringIO import StringIO
 ++    except ImportError:
 ++        from StringIO import StringIO
- +    def io(xml): return StringIO(xml)
+++    def as_io(xml): return StringIO(xml)
 ++else:
 ++    from BytesIO import BytesIO
- +    def io(xml): return BytesIO(bytes(xml, 'utf-8'))
+++    def as_io(xml): return BytesIO(bytes(xml, 'utf-8'))
 + 
 + class LXMLNZBParser(BaseETreeNZBParser):
 +     def get_etree_iter(self, xml, et=etree):
 +-        return iter(et.iterparse(StringIO(xml), events=("start", "end")))
 +\ No newline at end of file
- +        return iter(et.iterparse(io(xml), events=("start", "end")))
+++        return iter(et.iterparse(as_io(xml), events=("start", "end")))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-pynzb.git



More information about the Python-modules-commits mailing list