Panda3D
|
Functions | |
def | glob |
def | glob0 |
def | glob1 |
def | has_magic |
def | iglob |
Variables | |
list | __all__ = ["glob", "iglob"] |
tuple | magic_check = re.compile('[*?[]') |
This module reimplements Python's native glob module using Panda vfs constructs. This enables Python to interface more easily with Panda's virtual file system.
def stdpy.glob.glob | ( | pathname | ) |
Return a list of paths matching a pathname pattern. The pattern may contain simple shell-style wildcards a la fnmatch.
def stdpy.glob.glob0 | ( | dirname, | |
basename | |||
) |
def stdpy.glob.glob1 | ( | dirname, | |
pattern | |||
) |
def stdpy.glob.has_magic | ( | s | ) |
def stdpy.glob.iglob | ( | pathname | ) |
Return an iterator which yields the paths matching a pathname pattern. The pattern may contain simple shell-style wildcards a la fnmatch.
list __all__ = ["glob", "iglob"] |
tuple magic_check = re.compile('[*?[]') |