[issue11151] Arguments to various types not specified in types module

2011-02-08 Thread Noufal
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

[issue3132] implement PEP 3118 struct changes

2010-04-20 Thread Noufal
Changes by Noufal : -- nosy: +noufal ___ Python tracker <http://bugs.python.org/issue3132> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue3788] test_cookie isn't comprehensive

2009-02-22 Thread Noufal
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

[issue4860] js_output wrong for cookies with " characters

2009-01-15 Thread Noufal
Noufal added the comment: What's wrong with < and >? I can see the issues with ; though. ___ Python tracker <http://bugs.python.org/issue4860> ___ ___ Python-

[issue4860] js_output wrong for cookies with " characters

2009-01-07 Thread Noufal
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

[issue4860] js_output wrong for cookies with " characters

2009-01-06 Thread Noufal
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