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
cf18ff56
Commit
cf18ff56
authored
Jun 15, 2001
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't import DummyEngine by default -- it is only needed when no
expressionCompiler is passed in. Import it when needed.
parent
fb9c105b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lib/python/TAL/TALGenerator.py
lib/python/TAL/TALGenerator.py
+1
-1
No files found.
lib/python/TAL/TALGenerator.py
View file @
cf18ff56
...
...
@@ -91,12 +91,12 @@ import re
import
cgi
from
TALDefs
import
*
from
DummyEngine
import
DummyEngine
class
TALGenerator
:
def
__init__
(
self
,
expressionCompiler
=
None
,
xml
=
1
):
if
not
expressionCompiler
:
from
DummyEngine
import
DummyEngine
expressionCompiler
=
DummyEngine
()
self
.
expressionCompiler
=
expressionCompiler
self
.
program
=
[]
...
...
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