Commit 91dc0914 authored by Tres Seaver's avatar Tres Seaver

Collector #1621, 1894: Removed support for use of long-deprecated 'whrandom' module.

parent c3fb6eee
......@@ -100,6 +100,9 @@ Zope Changes
Bugs Fixed
- Collector #1621, 1894: Removed support for use of long-deprecated
'whrandom' module.
- OFS PropertySheets / webdav: Fixed dav__resourcetype.
__dav_collection__ with a false value was overridden by
isAnObjectManager.
......
......@@ -15,7 +15,7 @@
$Id$
"""
from DocumentTemplate import DT_Util
import SecurityManagement, string, math, whrandom, random
import SecurityManagement, string, math, random
import DocumentTemplate.sequence
from ZopeGuards import safe_builtins
......@@ -27,7 +27,6 @@ from ZopeGuards import safe_builtins
DT_Util.TemplateDict.__allow_access_to_unprotected_subobjects__=1
string.__allow_access_to_unprotected_subobjects__=1
math.__allow_access_to_unprotected_subobjects__=1
whrandom.__allow_access_to_unprotected_subobjects__=1
random.__allow_access_to_unprotected_subobjects__=1
DocumentTemplate.sequence.__allow_access_to_unprotected_subobjects__=1
......
......@@ -315,7 +315,7 @@ Python expression support
- Special security-aware versions of 'getattr' and 'hasattr',
- The Python 'string', 'math', and 'whrandom' modules, and
- The Python 'string', 'math', and 'random' modules, and
- A special function, 'test', that supports if-then expressions.
The 'test' function accepts any number of arguments. If the
......
......@@ -54,7 +54,7 @@ class PythonScript:
o math
o whrandom and random
o random
o Products.PythonScripts.standard
......
......@@ -13,7 +13,7 @@
__version__='$Revision: 1.7 $'[11:-2]
import string, math, random, whrandom
import string, math, random
import DocumentTemplate.sequence
from DateTime.DateTime import DateTime
......@@ -22,7 +22,6 @@ utility_builtins = {}
utility_builtins['string'] = string
utility_builtins['math'] = math
utility_builtins['random'] = random
utility_builtins['whrandom'] = whrandom
utility_builtins['sequence'] = DocumentTemplate.sequence
utility_builtins['DateTime'] = DateTime
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment