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
7c3c5087
Commit
7c3c5087
authored
Jul 09, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed fallback code for old Python versions from `ZServer.FTPServer.zope_ftp_channel.push`.
parent
75877c02
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
14 deletions
+9
-14
doc/CHANGES.rst
doc/CHANGES.rst
+3
-0
src/ZServer/FTPServer.py
src/ZServer/FTPServer.py
+6
-14
No files found.
doc/CHANGES.rst
View file @
7c3c5087
...
...
@@ -22,6 +22,9 @@ Bugs Fixed
Restructuring
+++++++++++++
- Removed fallback code for old Python versions from
`ZServer.FTPServer.zope_ftp_channel.push`.
- Removed fallback code for old `ZCatalog.catalog_object` function signatures
from `Products.ZCatalog.ZCatalog.reindexIndex`.
...
...
src/ZServer/FTPServer.py
View file @
7c3c5087
...
...
@@ -64,7 +64,6 @@ FTP Authorization
"""
import
sys
from
PubCore
import
handle
from
medusa.ftp_server
import
ftp_channel
,
ftp_server
,
recv_channel
import
asyncore
,
asynchat
...
...
@@ -82,8 +81,6 @@ import marshal
import
stat
import
time
py26_or_later
=
sys
.
version_info
>=
(
2
,
6
)
class
zope_ftp_channel
(
ftp_channel
):
"Passes its commands to Zope, not a filesystem"
...
...
@@ -113,18 +110,13 @@ class zope_ftp_channel(ftp_channel):
# note, that strings are not wrapped in
# producers by default
# LP #418454
if
py26_or_later
:
# Python 2.6 or later
sabs
=
self
.
ac_out_buffer_size
if
len
(
data
)
>
sabs
:
for
i
in
xrange
(
0
,
len
(
data
),
sabs
):
self
.
producer_fifo
.
append
(
data
[
i
:
i
+
sabs
])
else
:
self
.
producer_fifo
.
append
(
data
)
# LP #418454, Python 2.6 or later
sabs
=
self
.
ac_out_buffer_size
if
len
(
data
)
>
sabs
:
for
i
in
xrange
(
0
,
len
(
data
),
sabs
):
self
.
producer_fifo
.
append
(
data
[
i
:
i
+
sabs
])
else
:
# pre-Python 2.6
self
.
producer_fifo
.
push
(
data
)
self
.
producer_fifo
.
append
(
data
)
if
send
:
self
.
initiate_send
()
...
...
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