Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
eeca8a44
Commit
eeca8a44
authored
Sep 16, 1998
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provided better exception handling when trying to call objects.
parent
f6396b03
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
4 deletions
+20
-4
lib/python/DocumentTemplate/pDocumentTemplate.py
lib/python/DocumentTemplate/pDocumentTemplate.py
+20
-4
No files found.
lib/python/DocumentTemplate/pDocumentTemplate.py
View file @
eeca8a44
...
...
@@ -54,8 +54,8 @@
__doc__
=
'''Python implementations of document template some features
$Id: pDocumentTemplate.py,v 1.1
8 1998/09/14 22:19:57
jim Exp $'''
__version__
=
'$Revision: 1.1
8
$'
[
11
:
-
2
]
$Id: pDocumentTemplate.py,v 1.1
9 1998/09/16 20:19:12
jim Exp $'''
__version__
=
'$Revision: 1.1
9
$'
[
11
:
-
2
]
import
string
,
sys
,
types
from
string
import
join
...
...
@@ -161,8 +161,24 @@ class TemplateDict:
if
hasattr
(
v
,
'isDocTemp'
)
and
v
.
isDocTemp
:
v
=
v
(
None
,
self
)
else
:
try
:
v
=
v
()
except
(
AttributeError
,
TypeError
):
pass
try
:
return
v
()
except
AttributeError
,
ev
:
try
:
tb
=
sys
.
exc_traceback
if
hasattr
(
sys
,
'exc_info'
):
tb
=
sys
.
exc_info
()[
2
]
if
isFunctionType
(
type
(
v
)):
raise
AttributeError
,
ev
,
tb
if
hasattr
(
v
,
'__call__'
):
raise
AttributeError
,
ev
,
tb
finally
:
tb
=
None
except
TypeError
,
ev
:
try
:
tb
=
sys
.
exc_traceback
if
hasattr
(
sys
,
'exc_info'
):
tb
=
sys
.
exc_info
()[
2
]
if
isFunctionType
(
type
(
v
)):
raise
AttributeError
,
ev
,
tb
finally
:
tb
=
None
return
v
def
has_key
(
self
,
key
):
...
...
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