Changes by Thijs Triemstra :
--
nosy: +thijs
___
Python tracker
<http://bugs.python.org/issue12398>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Thijs Triemstra :
--
nosy: +thijs
___
Python tracker
<http://bugs.python.org/issue4833>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Thijs Triemstra :
--
nosy: +thijs
___
Python tracker
<http://bugs.python.org/issue1410680>
___
___
Python-bugs-list mailing list
Unsubscribe:
Thijs Triemstra 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
<http://bugs.python.org/issue1722
Changes by Thijs Triemstra :
--
nosy: +thijs
___
Python tracker
<http://bugs.python.org/issue6142>
___
___
Python-bugs-list mailing list
Unsubscribe:
Thijs Triemstra added the comment:
Here's a patch that uses platform.python_implementation instead,
producing:
>>> from wsgiref import simple_server
>>> simple_server.software_version
'WSGIServer/0.1 CPython/2.7a0'
>>>
This will become relevant wh
Changes by Thijs Triemstra :
--
nosy: +thijs
___
Python tracker
<http://bugs.python.org/issue1143>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Thijs Triemstra :
--
nosy: +thijs
___
Python tracker
<http://bugs.python.org/issue4434>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Thijs Triemstra :
--
nosy: +thijs
___
Python tracker
<http://bugs.python.org/issue6005>
___
___
Python-bugs-list mailing list
Unsubscribe:
Thijs Triemstra added the comment:
Guess it can be closed then.
--
nosy: +thijs
___
Python tracker
<http://bugs.python.org/issue3212>
___
___
Python-bugs-list m
Changes by Thijs Triemstra :
--
nosy: +thijs
___
Python tracker
<http://bugs.python.org/issue5885>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Thijs Triemstra :
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
nosy
New submission from Thijs Triemstra :
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
sev
Thijs Triemstra 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
__
Thijs Triemstra 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:
proxy.s
New submission from Thijs Triemstra :
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&qu
New submission from Thijs Triemstra :
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
17 matches
Mail list logo