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
08b06f9c
Commit
08b06f9c
authored
Nov 17, 2009
by
Joshua Roesslein
Committed by
Chris Wanstrath
Nov 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better way to perform callable check. Allow callables from context attributes.
parent
ae58a99f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
pystache/view.py
+5
-8
No files found.
pystache/view.py
View file @
08b06f9c
...
...
@@ -76,15 +76,12 @@ class View(object):
return
re
.
sub
(
'[A-Z]'
,
repl
,
name
)[
1
:]
def
get
(
self
,
attr
,
default
):
if
attr
in
self
.
context
:
return
self
.
context
[
attr
]
elif
hasattr
(
self
,
attr
):
try
:
return
getattr
(
self
,
attr
)()
except
TypeError
:
return
getattr
(
self
,
attr
)
attr
=
self
.
context
.
get
(
attr
,
getattr
(
self
,
attr
,
default
))
if
callable
(
attr
):
return
attr
()
else
:
return
default
return
attr
def
render
(
self
):
template
=
self
.
load_template
()
...
...
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