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
51aae426
Commit
51aae426
authored
17 years ago
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Collector #2295: Comments in PythonScripts could lead to syntax
errors
parent
626320a7
2.13
master
x/poll
y/cleanup-__del__
y/profile-fix
4.0a2
4.0a1
2.13.25
2.13.24
2.13.23
2.13.22
2.13.21
2.13.20
2.13.19
2.13.18
2.13.17
2.13.16
2.13.15
2.13.14
2.13.13
2.13.12
2.13.11
2.13.10
2.13.9
2.13.8
2.13.7
2.13.6
2.13.5
2.13.4
2.13.3
2.13.2
2.13.1
2.13.0
2.13.0c1
2.13.0b1
2.13.0a4
2.13.0a3
2.13.0a2
2.13.0a1
2.12.28
2.12.27
2.12.26
2.12.25
2.12.24
2.12.23
2.12.22
2.12.21
2.12.20
2.12.19
2.12.18
2.12.17
2.12.16
2.12.15
2.12.14
2.12.13
2.12.12
2.12.11
2.12.10
2.12.9
2.12.8
2.12.7
2.12.6
2.12.5
2.12.4
2.12.3
2.12.2
2.12.1
2.12.0
2.12.0c1
2.12.0b4
2.12.0b3
2.12.0b2
2.12.0b1
2.12.0a4
2.12.0a3
2.12.0a2
2.12.0a1
2.12-last-fulltree-revision
2.11.8
2.11.7
2.11.6
2.11.5
2.11.4
2.11.3
2.11.2
2.11.1
2.11.0
2.11.0c1
2.11.0b1
2.11.0a1
2.10.13
2.10.12
2.10.11
2.10.10
2.10.9
philikon-aq-checkpoint
before-merging-console-scripts-branch
backups/z4-zmi@124419
backups/tyam-unicodeSplitterPatch@104722
backups/tseaver-zope.app_delenda_est@110398
backups/tseaver-no_globals_imports@94459
backups/tseaver-clarify_install_docs@110394
backups/tseaver-2.11-no-z2-interfaces@110391
backups/shh-2.11-zopelitelayer@80865
backups/rochael-TM_sortKey@113726
backups/hannosch-dtml-vs-accesscontrol@113161
backups/gotcha-processlifetime@113938
backups/gotcha-LP143531@113945
backups/davisagli-copy-export@123222
backups/andig-catalog-report@115049
backups/ajung-2-11-prep-branch@82440
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
lib/python/Products/PythonScripts/tests/testPythonScript.py
lib/python/Products/PythonScripts/tests/testPythonScript.py
+6
-0
No files found.
lib/python/Products/PythonScripts/tests/testPythonScript.py
View file @
51aae426
...
...
@@ -128,6 +128,12 @@ class TestPythonScriptNoAq(PythonScriptTestBase):
res
=
self
.
_newPS
(
'return 1 * 5 + 4 / 2 - 6'
)()
self
.
assertEqual
(
res
,
1
)
def
testCollector2295
(
self
):
res
=
self
.
_newPS
(
'if False:
\
n
pass
\
n
#hi'
)
def
testCollector2295
(
self
):
res
=
self
.
_newPS
(
'if False:
\
n
pass
\
n
#hi'
)
def
testReduce
(
self
):
res
=
self
.
_newPS
(
'return reduce(lambda x, y: x + y, [1,3,5,7])'
)()
self
.
assertEqual
(
res
,
16
)
...
...
This diff is collapsed.
Click to expand it.
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