mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
8 lines
227 B
Python
8 lines
227 B
Python
from panda3d import core
|
|
|
|
def test_text_assemble_null():
|
|
# Tests that no is_whitespace() assert occurs
|
|
assembler = core.TextAssembler(core.TextEncoder())
|
|
assembler.set_wtext(u"\0test")
|
|
assembler.assemble_text()
|