[issue1394565] SimpleHTTPServer doesn't understand query arguments

2007-10-01 Thread philfr

philfr added the comment:

This fix introduces a nasty side-effect: GET http://server//file; (with
two /s) does not work anymore. It returns the directory index instead.

This is because urlparse is not applied to an URL, but to its right-hand
part starting at the path.

urlparse.urlparse(http://server//foo;)[2] correctly returns //foo, but 
urlparse.urlparse(//foo)[2] (as used in this library) returns an empty
string.

So the first proposed fix (msg27195) would be better. Or maybe this is
an urlparse issue, so that it should be able to process such a partial url.

--
nosy: +philfr

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1394565
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1224] SimpleHTTPServer doesn't understand // at beginning of path anymore

2007-10-01 Thread philfr

New submission from philfr:

The fix to issue 1394565 introduces a nasty side-effect:
GET http://server//file; (with two /s) does not work anymore. It
returns the directory index instead.

This is because urlparse is not applied to an URL, but to its right-hand
part starting at the path.

urlparse.urlparse(http://server//foo;)[2] correctly returns //foo, but 
urlparse.urlparse(//foo)[2] (as used in this library) returns an empty
string.

--
components: Library (Lib)
messages: 56205
nosy: philfr
severity: normal
status: open
title: SimpleHTTPServer doesn't understand // at beginning of path anymore
type: behavior
versions: Python 2.4, Python 2.5

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1224
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1394565] SimpleHTTPServer doesn't understand query arguments

2007-10-01 Thread philfr

philfr added the comment:

I created the new issue 1224 for this.

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1394565
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1223] httplib does not handle ssl end of file properly

2007-10-01 Thread Brett Cannon

Brett Cannon added the comment:

Patch is inlined in the opening comment for the issue.

--
keywords: +patch
nosy: +brett.cannon
type: crash - behavior

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1223
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1225] IDLE - Fix: pressing Ctrl+C while printing exception - stuck

2007-10-01 Thread Tal Einat

New submission from Tal Einat:

Patch run.py, adding a global 'interruptable' flag which is set only
when executing code. This avoids interrupting the main thread while it
is printing an exception, which would cause IDLE to freeze up.

Reworked patch from IDLE-Spoon.

--
components: IDLE
files: IDLE_Interrupt.071001.patch
messages: 56209
nosy: kbk, taleinat
severity: normal
status: open
title: IDLE - Fix: pressing Ctrl+C while printing exception - stuck
type: crash
versions: Python 2.5, Python 2.6

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1225
__

IDLE_Interrupt.071001.patch
Description: Binary data
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1226] lib/sched.py superfluous code for removal

2007-10-01 Thread lorph

New submission from lorph:

Line 114 of lib/sched.py:

It has a superfluous variable assignment which I deleted.
void =

--
components: Library (Lib)
files: sched.py
messages: 56210
nosy: lorph
severity: normal
status: open
title: lib/sched.py superfluous code for removal
versions: Python 2.5

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1226
__A generally useful event scheduler class.

Each instance of this class manages its own queue.
No multi-threading is implied; you are supposed to hack that
yourself, or use a single instance per application.

Each instance is parametrized with two functions, one that is
supposed to return the current time, one that is supposed to
implement a delay.  You can implement real-time scheduling by
substituting time and sleep from built-in module time, or you can
implement simulated time by writing your own functions.  This can
also be used to integrate scheduling with STDWIN events; the delay
function is allowed to modify the queue.  Time can be expressed as
integers or floating point numbers, as long as it is consistent.

Events are specified by tuples (time, priority, action, argument).
As in UNIX, lower priority numbers mean higher priority; in this
way the queue can be maintained as a priority queue.  Execution of the
event means calling the action function, passing it the argument.
Remember that in Python, multiple function arguments can be packed
in a tuple.   The action function may be an instance method so it
has another way to reference private data (besides global variables).
Parameterless functions or methods cannot be used, however.


# XXX The timefunc and delayfunc should have been defined as methods
# XXX so you can define new kinds of schedulers using subclassing
# XXX instead of having to define a module or class just to hold
# XXX the global state of your particular time and delay functions.

import heapq

__all__ = [scheduler]

class scheduler:
def __init__(self, timefunc, delayfunc):
Initialize a new instance, passing the time and delay
functions
self.queue = []
self.timefunc = timefunc
self.delayfunc = delayfunc

def enterabs(self, time, priority, action, argument):
Enter a new event in the queue at an absolute time.

Returns an ID for the event which can be used to remove it,
if necessary.


event = time, priority, action, argument
heapq.heappush(self.queue, event)
return event # The ID

def enter(self, delay, priority, action, argument):
A variant that specifies the time as a relative time.

This is actually the more commonly used interface.


time = self.timefunc() + delay
return self.enterabs(time, priority, action, argument)

def cancel(self, event):
Remove an event from the queue.

This must be presented the ID as returned by enter().
If the event is not in the queue, this raises RuntimeError.


self.queue.remove(event)
heapq.heapify(self.queue)

def empty(self):
Check whether the queue is empty.
return not self.queue

def run(self):
Execute events until the queue is empty.

When there is a positive delay until the first event, the
delay function is called and the event is left in the queue;
otherwise, the event is removed from the queue and executed
(its action function is called, passing it the argument).  If
the delay function returns prematurely, it is simply
restarted.

It is legal for both the delay function and the action
function to to modify the queue or to raise an exception;
exceptions are not caught but the scheduler's state remains
well-defined so run() may be called again.

A questionably hack is added to allow other threads to run:
just after an event is executed, a delay of 0 is executed, to
avoid monopolizing the CPU when other threads are also
runnable.


# localize variable access to minimize overhead
# and to improve thread safety
q = self.queue
delayfunc = self.delayfunc
timefunc = self.timefunc
pop = heapq.heappop
while q:
time, priority, action, argument = checked_event = q[0]
now = timefunc()
if now  time:
delayfunc(time - now)
else:
event = pop(q)
# Verify that the event was not removed or altered
# by another thread after we last looked at q[0].
if event is checked_event:
action(*argument)
delayfunc(0)   # Let other threads run
else:
heapq.heappush(event)
___
Python-bugs-list mailing list 

[issue1226] lib/sched.py superfluous code for removal

2007-10-01 Thread lorph

Changes by lorph:


--
severity: normal - minor
type:  - resource usage

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1226
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1227] csv docs say 'excel_tab'; code says 'excel-tab'

2007-10-01 Thread Dean Elzinga

New submission from Dean Elzinga:

I was trying out 'csv module' and noticed that it wouldn't accept a
dialect of 'excel_tab' as documented.

Then I noticed that csv.list_dialects() gave 'excel-tab' instead of
'excel_tab' as documented.

I'm not sure which one it's supposed to be, but I guess when in doubt
the docs are wrong. I leave these issues to the higher gods.

Thanks for the work on this module. I'm enjoying it!

--
components: Library (Lib)
messages: 56211
nosy: dcelzinga
severity: normal
status: open
title: csv docs say 'excel_tab'; code says 'excel-tab'
type: behavior
versions: Python 2.5

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1227
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com