Created work Item # 29390.
On Tue, Nov 9, 2010 at 11:19 AM, Dino Viehland wrote:
> Bruce wrote:
>> In trying to compile the StdLib for a program, I kept running into an error
>> with
>> BaseHTTPServer.py. I've isolated it down to an issue with Dictionaries and
>> tuples.
>>
>> This code:
>>
Bruce wrote:
> In trying to compile the StdLib for a program, I kept running into an error
> with
> BaseHTTPServer.py. I've isolated it down to an issue with Dictionaries and
> tuples.
>
> This code:
>
> responses = {
> 100: ('Continue', 'Request received, please continue'),
> }
>
> Ge
Michael wrote:
>
> Ha. :-)
>
> Does that mean you're no longer permitted to read the IronPython source
> code. ;-)
HA! That's actually a good point - but we got special permission to continue
working
on IronPython/IronRuby on our own time... It certainly covers writing new code,
I'm assuming i
In trying to compile the StdLib for a program, I kept running into an
error with BaseHTTPServer.py. I've isolated it down to an issue with
Dictionaries and tuples.
This code:
responses = {
100: ('Continue', 'Request received, please continue'),
}
Generates this error:
Traceback (most re
On 08/11/2010 19:44, Dino Viehland wrote:
Jeff wrote:
On Mon, Nov 8, 2010 at 10:55 AM, Dino Viehland
wrote:
Ahh, yeah, we should probably have a helper method in here which will
convert the string back to bytes rather than all of these casts to
Bytes. It could also be incompatible w/ CPython