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
828b0017
Commit
828b0017
authored
Nov 17, 2009
by
Joshua Roesslein
Committed by
Chris Wanstrath
Nov 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid try/block for detecting callable attributes. Allow for callable context attributes.
parent
6e83a2e3
Hide 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 @
828b0017
...
@@ -76,15 +76,12 @@ class View(object):
...
@@ -76,15 +76,12 @@ class View(object):
return
re
.
sub
(
'[A-Z]'
,
repl
,
name
)[
1
:]
return
re
.
sub
(
'[A-Z]'
,
repl
,
name
)[
1
:]
def
get
(
self
,
attr
,
default
):
def
get
(
self
,
attr
,
default
):
if
attr
in
self
.
context
:
attr
=
self
.
context
.
get
(
attr
,
getattr
(
self
,
attr
,
default
))
return
self
.
context
[
attr
]
elif
hasattr
(
self
,
attr
):
if
hasattr
(
attr
,
'__call__'
):
try
:
return
attr
()
return
getattr
(
self
,
attr
)()
except
TypeError
:
return
getattr
(
self
,
attr
)
else
:
else
:
return
default
return
attr
def
render
(
self
):
def
render
(
self
):
template
=
self
.
load_template
()
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