Alex Stapleton added the comment:
CRIME is not universally applicable to all TLS connections and it requires some
cooperation from the application to work. In fact for a Python TLS client it
seems quite unlikely for an application to be vulnerable. The attack in the
paper leverages an
New submission from Alex Stapleton :
Normal files throw exceptions if you mix methods.
>>> f = open("words")
>>> for l in f:
... break
...
>>> f.tell()
8192L
>>> f.readline()
Traceback (most recent call last):
File "", line 1, in
Alex Stapleton added the comment:
I am trying to get a PEP together for this. Does anyone have any thoughts
on how to handle comparison between unicode strings in a locale aware
situation?
Should __lt__ and __gt__ be specified as ignoring locale? In which case do
we need to add a new method
Alex Stapleton <[EMAIL PROTECTED]> added the comment:
I agree with loewis that ICU is probably the best way to get this
functionality into Python.
lemburg, yes it seems like extending those methods would be required at
the very least. We would probably also need to support ICUs collat
New submission from Alex Stapleton <[EMAIL PROTECTED]>:
Following a discussion on reddit it seems that the unicode case
conversion algorithms are not being followed.
$ python3.0
Python 3.0rc1 (r30rc1:66499, Oct 10 2008, 02:33:36)
[GCC 4.0.1 (Apple Inc. build 5488)] on darwin
Type