VirtualBox

source: vbox/trunk/src/libs/libxml2-2.6.30/python/tests/inbuf.py@ 8268

最後變更 在這個檔案從8268是 6076,由 vboxsync 提交於 17 年 前

Merged dmik/s2 branch (r25959:26751) to the trunk.

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Date Revision Author Id
檔案大小: 420 位元組
 
1#!/usr/bin/python -u
2import sys
3import libxml2
4import StringIO
5
6# Memory debug specific
7libxml2.debugMemory(1)
8
9i = 0
10while i < 5000:
11 f = StringIO.StringIO("foobar")
12 buf = libxml2.inputBuffer(f)
13 i = i + 1
14
15del f
16del buf
17
18# Memory debug specific
19libxml2.cleanupParser()
20if libxml2.debugMemory(1) == 0:
21 print "OK"
22else:
23 print "Memory leak %d bytes" % (libxml2.debugMemory(1))
24 libxml2.dumpMemory()
25
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette