File: inbuf.py

package info (click to toggle)
libxml2 2.8.0%2Bdfsg1-7%2Bwheezy5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 33,712 kB
  • sloc: ansic: 173,430; xml: 22,708; sh: 11,112; python: 11,071; makefile: 1,828; php: 364; perl: 67
file content (25 lines) | stat: -rwxr-xr-x 420 bytes parent folder | download | duplicates (9)
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
#!/usr/bin/python -u
import sys
import libxml2
import StringIO

# Memory debug specific
libxml2.debugMemory(1)

i = 0
while i < 5000:
    f = StringIO.StringIO("foobar")
    buf = libxml2.inputBuffer(f)
    i = i + 1

del f
del buf

# Memory debug specific
libxml2.cleanupParser()
if libxml2.debugMemory(1) == 0:
    print "OK"
else:
    print "Memory leak %d bytes" % (libxml2.debugMemory(1))
    libxml2.dumpMemory()