~pythoneers/ubuntu/lucid/lxml/ltsppa

« back to all changes in this revision

Viewing changes to PKG-INFO

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-11-30 14:36:53 UTC
  • mfrom: (1.1.20 upstream)
  • Revision ID: james.westby@ubuntu.com-20081130143653-kynmo5mhrotswfvx
Tags: 2.1.3-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Metadata-Version: 1.0
2
2
Name: lxml
3
 
Version: 2.1.2
 
3
Version: 2.1.3
4
4
Summary: Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
5
5
Home-page: http://codespeak.net/lxml
6
6
Author: lxml dev team
7
7
Author-email: lxml-dev@codespeak.net
8
8
License: UNKNOWN
9
 
Download-URL: http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.2.tar.gz
 
9
Download-URL: http://cheeseshop.python.org/packages/source/l/lxml/lxml-2.1.3.tar.gz
10
10
Description: lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries.  It
11
11
        provides safe and convenient access to these libraries using the ElementTree
12
12
        API.
30
30
        version from
31
31
        http://codespeak.net/svn/lxml/branch/lxml-2.1#egg=lxml-2.1bugfix
32
32
        
33
 
        2.1.2 (2008-09-05)
 
33
        2.1.3 (2008-11-17)
34
34
        ==================
35
35
        
36
36
        Features added
37
37
        --------------
38
38
        
39
 
        * lxml.etree now tries to find the absolute path name of files when
40
 
        parsing from a file-like object.  This helps custom resolvers when
41
 
        resolving relative URLs, as lixbml2 can prepend them with the path
42
 
        of the source document.
43
 
        
44
39
        Bugs fixed
45
40
        ----------
46
41
        
47
 
        * Memory problem when passing documents between threads.
48
 
        
49
 
        * Target parser did not honour the ``recover`` option and raised an
50
 
        exception instead of calling ``.close()`` on the target.
 
42
        * Ref-count leaks when lxml enters a try-except statement while an
 
43
        outside exception lives in sys.exc_*(). This was due to a problem in
 
44
        Cython, not lxml itself.
 
45
        
 
46
        * Parser Unicode decoding errors could get swallowed by other
 
47
        exceptions.
 
48
        
 
49
        * Name/import errors in some Python modules.
 
50
        
 
51
        * Internal DTD subsets that did not specify a system or public ID were
 
52
        not serialised and did not appear in the docinfo property of
 
53
        ElementTrees.
 
54
        
 
55
        * Fix a pre-Py3k warning when parsing from a gzip file in Py2.6.
 
56
        
 
57
        * Test suite fixes for libxml2 2.7.
 
58
        
 
59
        * Resolver.resolve_string() did not work for non-ASCII byte strings.
 
60
        
 
61
        * Resolver.resolve_file() was broken.
 
62
        
 
63
        * Overriding the parser encoding didn't work for many encodings.
51
64
        
52
65
        Other changes
53
66
        -------------