[issue26495] super() does not work in nested functions, genexps, listcomps, and gives misleading exceptions

2020-01-09 Thread Josh Lee


Change by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<https://bugs.python.org/issue26495>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16525] wave file module does not support 32bit float format

2020-10-15 Thread Josh Lee


Change by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<https://bugs.python.org/issue16525>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17132] yield_arg missing from symbol.sym_name

2013-02-05 Thread Josh Lee

New submission from Josh Lee:

>>> symbol.sym_name[337]
Traceback (most recent call last):
  File "", line 1, in 
KeyError: 337

It should be 'yield_arg'.

--
components: Library (Lib)
messages: 181440
nosy: Josh.Lee
priority: normal
severity: normal
status: open
title: yield_arg missing from symbol.sym_name
versions: Python 3.3

___
Python tracker 
<http://bugs.python.org/issue17132>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10976] json.loads() raises TypeError on bytes object

2013-09-20 Thread Josh Lee

Changes by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<http://bugs.python.org/issue10976>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22165] Empty response from http.server when directory listing contains invalid unicode

2014-08-07 Thread Josh Lee

New submission from Josh Lee:

While SimpleHTTPServer from Python2 would happily spit out whatever bytes were 
in the directory listing, Python3's http.server logs an error and closes the 
connection without responding to the HTTP request.

$ mkdir $'\xff'
$ ls
\377/
$ python3 -m http.server 
Serving HTTP on 0.0.0.0 port 8000 ...

Exception happened during processing of request from ('74.125.59.145', 19648)
Traceback (most recent call last):
  File "/home/josh/local/lib/python3.5/socketserver.py", line 321, in 
_handle_request_noblock
self.process_request(request, client_address)
  File "/home/josh/local/lib/python3.5/socketserver.py", line 347, in 
process_request
self.finish_request(request, client_address)
  File "/home/josh/local/lib/python3.5/socketserver.py", line 360, in 
finish_request
self.RequestHandlerClass(request, client_address, self)
  File "/home/josh/local/lib/python3.5/socketserver.py", line 681, in __init__
self.handle()
  File "/home/josh/local/lib/python3.5/http/server.py", line 398, in handle
self.handle_one_request()
  File "/home/josh/local/lib/python3.5/http/server.py", line 386, in 
handle_one_request
method()
  File "/home/josh/local/lib/python3.5/http/server.py", line 677, in do_GET
f = self.send_head()
  File "/home/josh/local/lib/python3.5/http/server.py", line 716, in send_head
return self.list_directory(path)
  File "/home/josh/local/lib/python3.5/http/server.py", line 772, in 
list_directory
% (urllib.parse.quote(linkname), html.escape(displayname)))
  File "/home/josh/local/lib/python3.5/urllib/parse.py", line 688, in quote
string = string.encode(encoding, errors)
UnicodeEncodeError: 'utf-8' codec can't encode character '\udcff' in position 
0: surrogates not allowed


--
components: Library (Lib)
messages: 225016
nosy: durin42, jleedev
priority: normal
severity: normal
status: open
title: Empty response from http.server when directory listing contains invalid 
unicode
versions: Python 3.5

___
Python tracker 
<http://bugs.python.org/issue22165>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11822] Improve disassembly to show embedded code objects

2014-08-12 Thread Josh Lee

Changes by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<http://bugs.python.org/issue11822>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17909] Autodetecting JSON encoding

2014-03-04 Thread Josh Lee

Changes by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<http://bugs.python.org/issue17909>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19837] Wire protocol encoding for the JSON module

2014-03-04 Thread Josh Lee

Changes by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<http://bugs.python.org/issue19837>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22455] idna/punycode give wrong results on narrow builds

2016-06-24 Thread Josh Lee

Changes by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<http://bugs.python.org/issue22455>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13444] closed stdout causes error on stderr when the interpreter unconditionally flushes on shutdown

2014-11-11 Thread Josh Lee

Changes by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<http://bugs.python.org/issue13444>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20215] socketserver can not listen IPv6 address

2016-03-05 Thread Josh Lee

Changes by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<http://bugs.python.org/issue20215>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue25667] Supply dual-stack (IPv4/IPv6) socket bind routine

2016-03-07 Thread Josh Lee

Changes by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<http://bugs.python.org/issue25667>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24209] Allow IPv6 bind in http.server

2016-04-04 Thread Josh Lee

Changes by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<http://bugs.python.org/issue24209>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3213] "pydoc -p" should listen to [::] if IPv6 is supported

2016-04-04 Thread Josh Lee

Changes by Josh Lee :


--
nosy: +jleedev

___
Python tracker 
<http://bugs.python.org/issue3213>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com