New submission from Noufal :
The documentation for the types module seems to have an obvious bug. The
arguments to create the various types are not mentioned in the docs page on
http://docs.python.org/library/types.html
This came to my attention from a stack overflow question here
http
Changes by Noufal :
--
nosy: +noufal
___
Python tracker
<http://bugs.python.org/issue3132>
___
___
Python-bugs-list mailing list
Unsubscribe:
http://mail.pyth
Noufal added the comment:
This patch contains some simple tests for Morsel. I will update it again
to increase coverage.
The changes to the Cookie tests assume that the patch in issue4860 has
been applied.
--
keywords: +patch
nosy: +noufal
Added file: http://bugs.python.org/file13154
Noufal added the comment:
What's wrong with < and >?
I can see the issues with ; though.
___
Python tracker
<http://bugs.python.org/issue4860>
___
___
Python-
Noufal added the comment:
A lot of the cookie tests need to be updated. A separate bug was filed
regarding this. http://bugs.python.org/issue3788.
I'm working on that now and will apply your patch there as well.
___
Python tracker
<http://bugs.py
New submission from Noufal :
If a cookie is created with a " character in the content, the js_output
which is emitted is bad javascript. eg.
>>> import Cookie
>>> c=Cookie.Cookie('Customer="WILE_E_COYOTE"; Version=1; Path=/acme')
>>> prin