9 lines
99 B
Python
9 lines
99 B
Python
|
|
#!/usr/bin/python
|
||
|
|
|
||
|
|
import ldns
|
||
|
|
|
||
|
|
buf = ldns.ldns_buffer(1024)
|
||
|
|
buf.printf("Test buffer")
|
||
|
|
print(buf)
|
||
|
|
|