File: ChangeLog

package info (click to toggle)
python-getdns 1.0.0~b1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 448 kB
  • sloc: ansic: 3,538; python: 607; makefile: 130
file content (35 lines) | stat: -rw-r--r-- 970 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Changes in version 0.3.1 (10 April 2015)

* implemented asynchronous queries, bound to Context()
  objects, and introduced Context.run() method.  See
  getdns.readthedocs.org

* queries now return a Result() object, with attributes.
  See getdns.readthedocs.org

* removed leading GETDNS_ in all constants
  (i.e. getdns.GETDNS_RRTYPE_AAAA is now getdns.RRTYPE_AAAA)

* added getdns.get_errorstr_by_id() method, making it easier
  to provide user-friendly error messages

* prettied up printing of canonical names in Result object

* str and repr printing has been added to both Context and
  Result objects

* dead code removed

* replaced instances of getdns_strerror() with
  getdns_get_errorstr_by_id()

* fixed incorrect error return from Result construction

* moved __version__ attribute from Context to top-level
  getdns module

* made exception handling within the module more consistent

* added documentation describing getdns.error

* broke out query types