Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 185516
Collapse All | Expand All

(-)bugz.py.orig (-3 / +10 lines)
Lines 10-17 Link Here
10
10
11
Requirements
11
Requirements
12
------------
12
------------
13
 - Python 2.4
13
 - Python 2.4 or 2.5
14
 - ElementTree
14
 - ElementTree (only with Python 2.4)
15
15
16
Classes
16
Classes
17
-------
17
-------
Lines 238-244 Link Here
238
from urlparse import urlsplit, urljoin
238
from urlparse import urlsplit, urljoin
239
from urllib import urlencode
239
from urllib import urlencode
240
from urllib2 import build_opener, HTTPCookieProcessor, Request
240
from urllib2 import build_opener, HTTPCookieProcessor, Request
241
from elementtree import ElementTree
241
242
try:
243
    # Python 2.5 implementation
244
    from xml.etree import ElementTree
245
except ImportError:
246
    # Stand-alone implementation
247
    from elementtree import ElementTree
248
242
from cookielib import LWPCookieJar, CookieJar
249
from cookielib import LWPCookieJar, CookieJar
243
250
244
#
251
#

Return to bug 185516