[issue8345] missing method MatchObject.groups in re module doc

2010-04-08 Thread Derk Drukker

New submission from Derk Drukker derk.druk...@gmail.com:

The method MatchObject.groups disappeared from Doc/library/re.rst in py3k 
branch r79434 after a merge. (trunk, release26-maint, and release31-maint are 
fine.)

--
assignee: georg.brandl
components: Documentation
messages: 102612
nosy: drukker, georg.brandl
severity: normal
status: open
title: missing method MatchObject.groups in re module doc
versions: Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue8345
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1235] CGIHTTPRequestHandler.run_cgi() does not run on Windows if sys.executable contains blanks

2009-11-10 Thread Derk Drukker

Changes by Derk Drukker derk.druk...@gmail.com:


Removed file: http://bugs.python.org/file15181/fix-issue1235-py3k.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1235
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1235] CGIHTTPRequestHandler.run_cgi() does not run on Windows if sys.executable contains blanks

2009-11-10 Thread Derk Drukker

Derk Drukker derk.druk...@gmail.com added the comment:

orsenthil: I reverted the changes that make Windows and Unix use the
same code in Patch Set 3, and briefly mentioned the reason for that in
the Rietveld app.  I should have mentioned it here too.

It was because it actually makes the implementation on Unix worse, since
the Windows implementation reads all data in memory.  (The subprocess
module documentation has this note: The data read is buffered in
memory, so do not use this method if the data size is large or unlimited.)

I tried replacing subprocess.PIPE with rfile/wfile, but it turns out
that that won't work, because on Windows socket.fileno() cannot be used
where file descriptors can be used, as the socket module documentation
states.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1235
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6748] test_debuglevel from test_telnetlib.py fails

2009-10-31 Thread Derk Drukker

Derk Drukker derk.druk...@gmail.com added the comment:

This patch fixes the issue.

--
keywords: +patch
nosy: +drukker
Added file: http://bugs.python.org/file15242/issue6748.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue6748
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6748] test_debuglevel from test_telnetlib.py fails

2009-10-31 Thread Derk Drukker

Derk Drukker derk.druk...@gmail.com added the comment:

The change in the patch worked for me on py3k on Ubuntu 9.10.  It makes
sense, though, that it could still fail: conn can get closed too soon.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue6748
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1235] CGIHTTPRequestHandler.run_cgi() does not run on Windows if sys.executable contains blanks

2009-10-25 Thread Derk Drukker

Derk Drukker derk.druk...@gmail.com added the comment:

More elegant than using quotes in the cmdline string is, IMO, passing a
sequence to subprocess.Popen instead.  I've put a new patch up for
review: http://codereview.appspot.com/141050

I've also unified the Unix and Windows portions in run_cgi.  Both now
use subprocess.  (Which on Unix still calls fork and exec, as before.)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1235
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1235] CGIHTTPRequestHandler.run_cgi() does not run on Windows if sys.executable contains blanks

2009-10-22 Thread Derk Drukker

Derk Drukker derk.druk...@gmail.com added the comment:

Salut,

Note that in py3k, CGIHTTPRequestHandler (Lib/http/server.py) already
switched to using subprocess.

AFAICT, you didn't actually change cmdline, and so the problem remains.

--
nosy: +drukker
versions: +Python 3.1, Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1235
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1235] CGIHTTPRequestHandler.run_cgi() does not run on Windows if sys.executable contains blanks

2009-10-22 Thread Derk Drukker

Derk Drukker derk.druk...@gmail.com added the comment:

The original problem reported concerned spaces in the path of the python
executable.  So interp needs to be in quotes, as well (as Andy already
suggested).  I've created a patch against the latest py3k, which I've
confirmed works and fixes this issue.

I'm not a core developer, so I don't know why it wasn't backported. I
don't know if this will make it into 2.6. Maybe trunk?

--
keywords: +patch
Added file: http://bugs.python.org/file15181/fix-issue1235-py3k.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1235
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7080] locale.strxfrm raises MemoryError

2009-10-19 Thread Derk Drukker

Derk Drukker egr...@operamail.com added the comment:

I've entered my real name.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7080
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com