Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pystache_custom
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
pystache_custom
Commits
96af7f72
Commit
96af7f72
authored
Dec 23, 2011
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved Loader.__init__() docstring slightly.
parent
28569a66
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
pystache/loader.py
+10
-5
No files found.
pystache/loader.py
View file @
96af7f72
...
@@ -19,22 +19,27 @@ class Loader(object):
...
@@ -19,22 +19,27 @@ class Loader(object):
Arguments:
Arguments:
search_dirs: the list of directories in which to search for templates,
for example when looking for partials. Defaults to the current
working directory. If given a string, the string is interpreted
as a single directory.
extension: the template file extension. Defaults to "mustache".
Pass False for no extension (i.e. extensionless template files).
encoding: the name of the encoding to use when converting file
encoding: the name of the encoding to use when converting file
contents to unicode. This name will be passed as the encoding
contents to unicode. This name will be passed as the encoding
argument to the built-in function unicode(). Defaults to the
argument to the built-in function unicode(). Defaults to the
encoding name returned by sys.getdefaultencoding().
encoding name returned by sys.getdefaultencoding().
search_dirs: the directories in which to search for templates.
Defaults to the current working directory.
extension: the template file extension. Defaults to "mustache".
Pass False for no extension.
"""
"""
if
encoding
is
None
:
if
encoding
is
None
:
encoding
=
sys
.
getdefaultencoding
()
encoding
=
sys
.
getdefaultencoding
()
if
extension
is
None
:
if
extension
is
None
:
extension
=
DEFAULT_EXTENSION
extension
=
DEFAULT_EXTENSION
if
search_dirs
is
None
:
if
search_dirs
is
None
:
search_dirs
=
os
.
curdir
# i.e. "."
search_dirs
=
os
.
curdir
# i.e. "."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment