[issue12398] Sending binary data with a POST request in httplib can cause Unicode exceptions

2011-07-03 Thread Thijs Triemstra
Changes by Thijs Triemstra li...@collab.nl: -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12398 ___ ___ Python-bugs-list mailing

[issue4833] Explicit directories for zipfiles

2011-02-01 Thread Thijs Triemstra
Changes by Thijs Triemstra li...@collab.nl: -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4833 ___ ___ Python-bugs-list mailing

[issue1410680] Add 'surgical editing' to ConfigParser

2011-01-03 Thread Thijs Triemstra
Changes by Thijs Triemstra li...@collab.nl: -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1410680 ___ ___ Python-bugs-list mailing

[issue1722344] Thread shutdown exception in Thread.notify()

2010-04-13 Thread Thijs Triemstra
Thijs Triemstra li...@collab.nl added the comment: Looks like this influenced mod_wsgi as well: http://groups.google.com/group/modwsgi/browse_thread/thread/ba82b2643564d2dd -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http

[issue6142] Distutils doesn't remove .pyc files

2010-03-15 Thread Thijs Triemstra
Changes by Thijs Triemstra li...@collab.nl: -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6142 ___ ___ Python-bugs-list mailing

[issue5885] uuid.uuid1() is too slow

2009-09-23 Thread Thijs Triemstra
Changes by Thijs Triemstra li...@collab.nl: -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5885 ___ ___ Python-bugs-list mailing

[issue3212] ssl module - should test for a wrong cert

2009-09-23 Thread Thijs Triemstra
Thijs Triemstra li...@collab.nl added the comment: Guess it can be closed then. -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3212

[issue6005] Bug in socket example

2009-09-23 Thread Thijs Triemstra
Changes by Thijs Triemstra li...@collab.nl: -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6005 ___ ___ Python-bugs-list mailing

[issue4434] Embedding into a shared library fails

2009-09-23 Thread Thijs Triemstra
Changes by Thijs Triemstra li...@collab.nl: -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4434 ___ ___ Python-bugs-list mailing

[issue1143] Update to latest ElementTree in Python 2.7

2009-09-23 Thread Thijs Triemstra
Changes by Thijs Triemstra li...@collab.nl: -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1143 ___ ___ Python-bugs-list mailing

[issue6904] Broken URL for pyqt

2009-09-13 Thread Thijs Triemstra
New submission from Thijs Triemstra li...@collab.nl: using/mac.html#gui-programming-on-the-mac refers to http://www.riverbankcomputing.co.uk/pyqt/ but this should be http://www.riverbankcomputing.co.uk/software/pyqt -- assignee: georg.brandl components: Documentation messages: 92589

[issue6224] References to JPython

2009-06-06 Thread Thijs Triemstra
New submission from Thijs Triemstra li...@collab.nl: The documentation refers to JPython in several places, which is the old name, it's called Jython nowadays. - platform.java_ver - tkinter -- assignee: georg.brandl components: Documentation messages: 89012 nosy: georg.brandl, thijs

[issue6079] SyntaxError in xmlrpc.client Fault example

2009-05-21 Thread Thijs Triemstra
New submission from Thijs Triemstra li...@collab.nl: The example is defined as: import xmlrpc.client proxy = xmlrpc.client.ServerProxy(http://localhost:8000/;) try: proxy.add(2, 5) except xmlrpc.client.Fault, err: print(A fault occurred) print(Fault code: %d % err.faultCode

[issue6079] SyntaxError in xmlrpc.client Fault example

2009-05-21 Thread Thijs Triemstra
Thijs Triemstra li...@collab.nl added the comment: On the same documentation page for Python 3.1b1 it shows a similar error for the ProtocolError example: import xmlrpc.client # create a ServerProxy with an invalid URI proxy = xmlrpc.client.ServerProxy(http://invalidaddress/;) try

[issue6079] SyntaxError in xmlrpc.client examples

2009-05-21 Thread Thijs Triemstra
Thijs Triemstra li...@collab.nl added the comment: Updated ticket title since it's for multiple sections in the documentation, not just the Fault example. -- title: SyntaxError in xmlrpc.client Fault example - SyntaxError in xmlrpc.client examples

[issue5931] Python runtime name hardcoded in wsgiref.simple_server

2009-05-04 Thread Thijs Triemstra
New submission from Thijs Triemstra li...@collab.nl: While testing the following script on Jython 2.5b4 I noticed it returned SERVER_SOFTWARE = 'WSGIServer/0.1 Python/2.5b4+' instead of the expected 'WSGIServer/0.1 Jython/2.5b4+'. This is because the word 'Python' is hardcoded