[issue35004] Odd behavior when using datetime.timedelta under cProfile

2018-10-16 Thread Beau Gunderson
New submission from Beau Gunderson : In chasing down a bug in my code that only manifests itself when running under cProfile I managed to find the culprit in datetime.timedelta by way of dateutil. Here is a small repro: https://gist.github.com/beaugunderson/68ea6424a4fdcf763ccad08e42a74974

[issue10950] ServerProxy returns bad XML

2011-01-19 Thread Beau
Beau added the comment: Use my API key? That would have been telling! Fortunately I used the example API key Last.fm provide on the page I linked ;) -- ___ Python tracker <http://bugs.python.org/issue10

[issue10950] ServerProxy returns bad XML

2011-01-19 Thread Beau
Beau added the comment: Thanks for your time, georg.brandl. I'll file a bug report with them. -- ___ Python tracker <http://bugs.python.org/issue10950> ___ ___

[issue10950] ServerProxy returns bad XML

2011-01-19 Thread Beau
Changes by Beau : -- type: compile error -> behavior ___ Python tracker <http://bugs.python.org/issue10950> ___ ___ Python-bugs-list mailing list Unsubscri

[issue10950] ServerProxy returns bad XML

2011-01-19 Thread Beau
New submission from Beau : xmlrpc.client.ServerProxy calls that return XML (ie, the a non-marshallable type) give bad XML, with \" (backslash then double quote characters, '\\"'; not escaped double quote) in place of ", and \' in place of '. Ampersands aren&#

[issue7925] minidom: "TypeError: writexml() takes at most 5 positional arguments (6 given)"

2010-02-13 Thread Beau
New submission from Beau : When calling toprettyxml() from minidom.py, I get a TypeError stating that writexml() takes at most five positional arguments, but six are being passed. -- components: Library (Lib) messages: 99323 nosy: beaumartinez severity: normal status: open title

[issue5155] Multiprocessing.Queue created by sub-process fails when used in sub-sub-process ("bad file descriptor" in q.get())

2009-03-31 Thread Beau Butler
Beau Butler added the comment: Quick note: Have tracked this down to what appears to be buggy behaviour on the part of os.pipe() when called from within a Process. First invocation of os.pipe() in a Process returns (0,x) - stdin(?) resulting in the 'bad file descriptor' error. I

[issue5155] Multiprocessing.Queue created by sub-process fails when used in sub-sub-process ("bad file descriptor" in q.get())

2009-02-04 Thread Beau Butler
Beau Butler added the comment: Also reproduced in Python3.0 on OSX 10.5 -- versions: +Python 3.0 ___ Python tracker <http://bugs.python.org/issue5155> ___ ___

[issue5155] Multiprocessing.Queue created by sub-process fails when used in sub-sub-process ("bad file descriptor" in q.get())

2009-02-04 Thread Beau Butler
Changes by Beau Butler : -- title: Multiprocessing.Queue created by sub-process fails when used in sub-sub-process -> Multiprocessing.Queue created by sub-process fails when used in sub-sub-process ("bad file descriptor" in q.get()) _

[issue5155] Multiprocessing.Queue created by sub-process fails when used in sub-sub-process

2009-02-04 Thread Beau Butler
Changes by Beau Butler : -- title: Multiprocessing.Queue created by subprocess fails when used in sub-sub-process -> Multiprocessing.Queue created by sub-process fails when used in sub-sub-process ___ Python tracker <http://bugs.pyth

[issue5155] Multiprocessing.Queue created by subprocess fails when used in sub-sub-process

2009-02-04 Thread Beau Butler
New submission from Beau Butler : (Note: This issue only happens on linux - on Windows things work fine.) Please see the attached script. The script creates a process (TestProcess()). That process runs and creates a sub-process (TestSubProcess()). When TestSubProcess tries to access a Queue