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
bc4f7652
Commit
bc4f7652
authored
Jan 17, 2001
by
Evan Simpson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge change to trunk
parent
7e7b0fdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
lib/python/Products/PythonScripts/PythonScript.py
lib/python/Products/PythonScripts/PythonScript.py
+9
-1
No files found.
lib/python/Products/PythonScripts/PythonScript.py
View file @
bc4f7652
...
...
@@ -89,7 +89,7 @@ This product provides support for Script objects containing restricted
Python code.
"""
__version__
=
'$Revision: 1.1
6
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.1
7
$'
[
11
:
-
2
]
import
sys
,
os
,
traceback
,
re
from
Globals
import
DTMLFile
,
MessageDialog
...
...
@@ -104,6 +104,10 @@ from OFS.History import Historical, html_diff
from
OFS.Cache
import
Cacheable
from
zLOG
import
LOG
,
ERROR
,
INFO
import
imp
Python_magic
=
imp
.
get_magic
()
del
imp
manage_addPythonScriptForm
=
DTMLFile
(
'www/pyScriptAdd'
,
globals
())
_marker
=
[]
# Create a new marker object
...
...
@@ -257,11 +261,15 @@ class PythonScript(Script, Historical, Cacheable):
fc = f.func_code
self._setFuncSignature(f.func_defaults, fc.co_varnames,
fc.co_argcount)
self.Python_magic = Python_magic
return f
def _makeFunction(self, allowSideEffect=0):
from Guarded import GuardedBlock, theGuard, safebin
from Guarded import WriteGuard, ReadGuard
# Was the cached bytecode compiled with a compatible Python?
if getattr(self, Python_magic, None) != Python_magic:
allowSideEffect = 1
if allowSideEffect:
self._checkCBlock(GuardedBlock)
self.ZCacheable_invalidate()
...
...
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