source:
vbox/trunk/src/libs/libxml2-2.6.31/python/tests/inbuf.py@
55391
最後變更 在這個檔案從55391是 39915,由 提交於 13 年 前 | |
---|---|
|
|
檔案大小: 420 位元組 |
行 | |
---|---|
1 | #!/usr/bin/python -u |
2 | import sys |
3 | import libxml2 |
4 | import StringIO |
5 | |
6 | # Memory debug specific |
7 | libxml2.debugMemory(1) |
8 | |
9 | i = 0 |
10 | while i < 5000: |
11 | f = StringIO.StringIO("foobar") |
12 | buf = libxml2.inputBuffer(f) |
13 | i = i + 1 |
14 | |
15 | del f |
16 | del buf |
17 | |
18 | # Memory debug specific |
19 | libxml2.cleanupParser() |
20 | if libxml2.debugMemory(1) == 0: |
21 | print "OK" |
22 | else: |
23 | print "Memory leak %d bytes" % (libxml2.debugMemory(1)) |
24 | libxml2.dumpMemory() |
25 |
注意:
瀏覽 TracBrowser
來幫助您使用儲存庫瀏覽器