1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-16 20:59:12 +03:00

s4-python: added ndr_print() method in ndr

This commit is contained in:
Andrew Tridgell
2010-08-23 07:52:25 +10:00
parent 895064000d
commit 10813bdd85

View File

@ -26,3 +26,6 @@ def ndr_unpack(cls, data):
object = cls()
object.__ndr_unpack__(data)
return object
def ndr_print(object):
return object.__ndr_print__()