| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| | |
|
| |
|
|
|
|
|
| |
Classes inherit from object by default; there's no need to explicitly
include this.
Replace super(Foo, self) with super().
|
| |
|
|
|
|
| |
This changes the internal implementation from a list to an ordered
dictionary (dict or collections.OrderedDict, depending on Python
version). This is possible now that Rdata are immutable.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
| |
__getslice__ is deprecated in py2 and it is not used in py3 at all.
Instead of this __getitem__ with slice() index should be used.
Please note that WireData class must still use __getslice__, because it
inherites from 'binary_type' class that has implemented __getslice__
thus this method has to be overriden in WireData class.
|
| |
|
|
| |
__delslice__ is deprecated since python 2.6 and was removed in py3
|
| |
|
|
| |
Signed-off-by: Arthur Gautier <baloo@gandi.net>
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
Original author: Bob Halley <halley@dnspython.org>
Date: 2005-05-06 23:39:25
|
| |
|
|
|
| |
Original author: Bob Halley <halley@dnspython.org>
Date: 2005-01-08 08:13:48
|
| |
|
|
|
| |
Original author: Bob Halley <halley@dnspython.org>
Date: 2004-07-31 09:51:40
|
|
|
Original author: Bob Halley <halley@dnspython.org>
Date: 2004-03-23 21:57:40
|