Message123040
On Wed, Dec 01, 2010 at 05:08:26PM +0000, Antoine Pitrou wrote:
> Antoine Pitrou <pitrou@free.fr> added the comment:
> > if not request.has_header('Content-length'):
> > if (not hasattr(data, '__read__') and
>
> What is __read__ supposed to be?
I don't think is required. The previous 2.x version patch was doing
this just to ensure that it is not file object and then it is a
sequence. (I could not understand why)
Now, when you determine that the sequence can be bytes, bytearray or
array.array then testing for memory view is enough. File objects
without Content-Length would raise an Exception too.
Not required. For the same reason as above. |
|
Date |
User |
Action |
Args |
2010-12-02 02:40:52 | orsenthil | set | recipients:
+ orsenthil, jhylton, georg.brandl, rhettinger, pitrou, catlee, eric.araujo, rcoyner, xuanji, davide.rizzo |
2010-12-02 02:40:50 | orsenthil | link | issue3243 messages |
2010-12-02 02:40:50 | orsenthil | create | |
|