mirror of
https://github.com/erkin/ponysay.git
synced 2025-02-16 17:44:23 +01:00
list.py: Renamed list module to lists to avoid conflict with builtin.
This commit is contained in:
parent
69461d20fc
commit
7767a7d9c1
2 changed files with 5 additions and 5 deletions
|
@ -35,7 +35,7 @@ from balloon import *
|
||||||
from spellocorrecter import *
|
from spellocorrecter import *
|
||||||
from ucs import *
|
from ucs import *
|
||||||
from kms import *
|
from kms import *
|
||||||
import list as _list
|
import lists
|
||||||
from metadata import *
|
from metadata import *
|
||||||
|
|
||||||
|
|
||||||
|
@ -739,7 +739,7 @@ class Ponysay():
|
||||||
|
|
||||||
@param ponydirs:itr<str>? The pony directories to use
|
@param ponydirs:itr<str>? The pony directories to use
|
||||||
'''
|
'''
|
||||||
_list.simplelist(self.ponydirs if ponydirs is None else ponydirs,
|
lists.simplelist(self.ponydirs if ponydirs is None else ponydirs,
|
||||||
self.__quoters(), lambda x : self.__ucsise(x))
|
self.__quoters(), lambda x : self.__ucsise(x))
|
||||||
|
|
||||||
|
|
||||||
|
@ -749,7 +749,7 @@ class Ponysay():
|
||||||
|
|
||||||
@param ponydirs:itr<str> The pony directories to use
|
@param ponydirs:itr<str> The pony directories to use
|
||||||
'''
|
'''
|
||||||
_list.linklist(self.ponydirs if ponydirs is None else ponydirs,
|
lists.linklist(self.ponydirs if ponydirs is None else ponydirs,
|
||||||
self.__quoters(), lambda x, y : self.__ucsise(x, y))
|
self.__quoters(), lambda x, y : self.__ucsise(x, y))
|
||||||
|
|
||||||
|
|
||||||
|
@ -760,7 +760,7 @@ class Ponysay():
|
||||||
@param standard:bool Include standard ponies
|
@param standard:bool Include standard ponies
|
||||||
@param extra:bool Include extra ponies
|
@param extra:bool Include extra ponies
|
||||||
'''
|
'''
|
||||||
_list.onelist(self.ponydirs if standard else None,
|
lists.onelist(self.ponydirs if standard else None,
|
||||||
self.extraponydirs if extra else None,
|
self.extraponydirs if extra else None,
|
||||||
lambda x : self.__ucsise(x))
|
lambda x : self.__ucsise(x))
|
||||||
|
|
||||||
|
@ -801,7 +801,7 @@ class Ponysay():
|
||||||
'''
|
'''
|
||||||
Prints a list of all balloons
|
Prints a list of all balloons
|
||||||
'''
|
'''
|
||||||
_list.balloonlist(self.balloondirs, self.isthink)
|
lists.balloonlist(self.balloondirs, self.isthink)
|
||||||
|
|
||||||
|
|
||||||
def __getBalloonPath(self, names, alt = False):
|
def __getBalloonPath(self, names, alt = False):
|
||||||
|
|
Loading…
Reference in a new issue