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
b7ee7aad
Commit
b7ee7aad
authored
Dec 18, 1998
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rand -> random
parent
c47daa2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lib/python/ZPublisher/Client.py
lib/python/ZPublisher/Client.py
+3
-3
No files found.
lib/python/ZPublisher/Client.py
View file @
b7ee7aad
...
@@ -103,13 +103,13 @@ that allows one to simply make a single web request.
...
@@ -103,13 +103,13 @@ that allows one to simply make a single web request.
The module also provides a command-line interface for calling objects.
The module also provides a command-line interface for calling objects.
"""
"""
__version__
=
'$Revision: 1.2
7
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.2
8
$'
[
11
:
-
2
]
import
sys
,
regex
,
socket
,
mimetools
import
sys
,
regex
,
socket
,
mimetools
from
httplib
import
HTTP
from
httplib
import
HTTP
from
os
import
getpid
from
os
import
getpid
from
time
import
time
from
time
import
time
from
rand
import
rand
from
rand
om
import
random
from
regsub
import
gsub
from
regsub
import
gsub
from
base64
import
encodestring
from
base64
import
encodestring
from
urllib
import
urlopen
,
quote
from
urllib
import
urlopen
,
quote
...
@@ -507,7 +507,7 @@ class MultiPart:
...
@@ -507,7 +507,7 @@ class MultiPart:
def boundary(self):
def boundary(self):
return '
%
s_
%
s_
%
s
' % (int(time()), getpid(),
rand(
))
return '
%
s_
%
s_
%
s
' % (int(time()), getpid(),
int(random()*1000000000
))
def render(self):
def render(self):
...
...
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