[issue2771] Test issue

2014-02-10 Thread Ezio Melotti
Ezio Melotti added the comment: test after roundup upgrade -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue20587] sqlite3 converter not being called

2014-02-10 Thread Kathryn M Kowalski
Changes by Kathryn M Kowalski : Added file: http://bugs.python.org/file34029/check_with_output.txt ___ Python tracker ___ ___ Python-bugs-list

[issue2771] Test issue

2014-02-10 Thread Ezio Melotti
Ezio Melotti added the comment: test message via email -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue20585] urllib2 unrelease KQUEUE on Mac OSX 10.9+

2014-02-10 Thread Ned Deily
Changes by Ned Deily : -- nosy: +orsenthil priority: normal -> high versions: +Python 3.3, Python 3.4 ___ Python tracker ___ ___ Pytho

[issue20558] ECONNRESET value in logging.config is valid with Linux [distros]; not valid with *BSD

2014-02-10 Thread Garrett Cooper
Garrett Cooper added the comment: Updated patch to incorporate Vinay's comments. Thanks :)! -- Added file: http://bugs.python.org/file34030/patch ___ Python tracker ___ _

[issue20361] -W command line options and PYTHONWARNINGS environmental variable should not override -b / -bb command line options

2014-02-10 Thread Jakub Wilk
Changes by Jakub Wilk : -- nosy: +jwilk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue19494] urllib2.HTTPBasicAuthHandler (or urllib.request.HTTPBasicAuthHandler) doesn't work with GitHub API v3 and similar

2014-02-10 Thread Matej Cepl
Matej Cepl added the comment: This is the suggested patch for this issue. Just adding new http_request method of HTTPBasicAuthHandler which adds Authorization header to the initial request. Patch is now just for python 2.7, but it may be trivially ported to any other version of Python as it us

[issue19494] urllib2.HTTPBasicAuthHandler (or urllib.request.HTTPBasicAuthHandler) doesn't work with GitHub API v3 and similar

2014-02-10 Thread Matej Cepl
Changes by Matej Cepl : Removed file: http://bugs.python.org/file32835/test_create_1.py ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue20584] On FreeBSD, signal.NSIG is smaller than biggest signal value

2014-02-10 Thread Jan-Philip Gehrcke
Jan-Philip Gehrcke added the comment: As a follow-up, relevant output from FreeBSD 9: $ python Python 2.7.5 (default, Dec 20 2013, 21:12:37) [GCC 4.2.1 20070831 patched [FreeBSD]] on freebsd9 Type "help", "copyright", "credits" or "license" for more information. >>> import signal >>> signals = [

[issue20587] sqlite3 converter not being called

2014-02-10 Thread R. David Murray
R. David Murray added the comment: Hmm. Looks like I would need a copy of your database to be able to run this? Maybe you could add something to create the schema and add the rows to be queried? There are tests for the converter/adapter functionality, so it must be something specific about

[issue20558] ECONNRESET value in logging.config is valid with Linux [distros]; not valid with *BSD

2014-02-10 Thread Garrett Cooper
Changes by Garrett Cooper : Removed file: http://bugs.python.org/file33986/patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue894936] Have a split corresponding with os.path.join

2014-02-10 Thread Martin Panter
Martin Panter added the comment: I suggest closing this in favour of issue 11344, “Add os.path.splitpath(path) function”, which has a more complete patch ready. -- nosy: +vadmium ___ Python tracker __

[issue20588] Code generated by asdl_c.py not C89-compliant

2014-02-10 Thread Jeffrey Armstrong
New submission from Jeffrey Armstrong: The code within Python/Python-ast.c does not currently conform to C89 standard. Within the function PyAST_obj2mod(), the array 'req_type' is initialized using runtime values, which is not allowed by the standard, causing building to fail on a C89 compile

[issue894936] Have a split corresponding with os.path.join

2014-02-10 Thread R. David Murray
R. David Murray added the comment: I agree that that is a superseder, although it sounds like it may not be needed since pathlib is part of 3.4 (albeit provisional). -- resolution: -> duplicate stage: test needed -> committed/rejected status: languishing -> closed superseder: -> Add o

[issue20588] Code generated by asdl_c.py not C89-compliant

2014-02-10 Thread R. David Murray
Changes by R. David Murray : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue20589] pathlib.owner() and pathlib.group() raise ImportError on Windows

2014-02-10 Thread James Skinner
New submission from James Skinner: When using the Path class in Lib/pathlib.py under Windows, calling p.owner() or p.group() fails with an ImportError due to importing the pwd and grp modules respectively, as neither of those exist. The documentation doesn't mention this behaviour. The preced

[issue20590] Download Talkray...

2014-02-10 Thread Alfonso Andalon Jr.
New submission from Alfonso Andalon Jr.: Download this http://talkray.com/dl/ee -- messages: 210897 nosy: Alfonso.Andalon.Jr. priority: normal severity: normal status: open title: Download Talkray... ___ Python tracker

[issue20589] pathlib.owner() and pathlib.group() raise ImportError on Windows

2014-02-10 Thread Vajrasky Kok
Changes by Vajrasky Kok : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue20590] spam

2014-02-10 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> invalid status: open -> closed title: Download Talkray... -> spam ___ Python tracker ___ ___

[issue20590] spam

2014-02-10 Thread Ezio Melotti
Changes by Ezio Melotti : -- Removed message: http://bugs.python.org/msg210897 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue20588] Code generated by asdl_c.py not C89-compliant

2014-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5b3bb4bda9cb by Benjamin Peterson in branch '3.3': don't put runtime values in array initializer for C89 compliance (closes #20588) http://hg.python.org/cpython/rev/5b3bb4bda9cb New changeset cdaf7b38bb2c by Benjamin Peterson in branch 'default': me

[issue2771] Test issue

2014-02-10 Thread Ezio Melotti
Ezio Melotti added the comment: another test -- assignee: -> ezio.melotti nosy: +python-dev priority: low -> normal ___ Python tracker ___ ___

[issue20585] urllib2 unrelease KQUEUE on Mac OSX 10.9+

2014-02-10 Thread Ned Deily
Ned Deily added the comment: It looks like the culprit is _scproxy, an internal C extension, that urllib2 (py2) and urllib.request (py3) use on OS X to access the system configuration for network proxies. If you aren't using any proxies, a workaround is to define an environment variable:

[issue20583] Hide underscored parameters

2014-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, this issue is based on Nick's intention in msg206515. Since this issue was rejected, my objection against adding new underscored parameters in issue19619 remain in force. -- ___ Python tracker

[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2014-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Francisco! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

<    1   2