[issue21148] avoid memset in small tuple creation

2015-04-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: I think this looks promising. Don't worry too much about the modest timing improvement. For the most part, we should almost always take steps to eliminate work that is known to be unnecessary. The timings serve as a guide but it would be easy for us to ge

[issue23943] Misspellings in a few files

2015-04-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks Piotr. -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.4 ___ Python tracker _

[issue23943] Misspellings in a few files

2015-04-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9f2bd9939d4b by Berker Peksag in branch '3.4': Issue #23943: Fix typos. Patch by Piotr Kasprzyk. https://hg.python.org/cpython/rev/9f2bd9939d4b New changeset 4fb2075952a4 by Berker Peksag in branch 'default': Issue #23943: Fix typos. Patch by Piotr

[issue23908] Check path arguments of os functions for null character

2015-04-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I can't test the patch on UNIX, this branch of the code is executed only on Windows. -- ___ Python tracker ___ __

[issue17582] xml.etree.ElementTree does not preserve whitespaces in attributes

2015-04-13 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue5438] test_bigmem.test_from_2G_generator uses more memory than expected

2015-04-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: How long time the test run (if there is enough memory)? May be we should decrease memory requirements by using shared values? -- nosy: +serhiy.storchaka ___ Python tracker __

[issue23937] IDLE start maximized

2015-04-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: I also teach students and prefer the current behavior. It is egregious for apps to assume that they are the only thing running and to hide everything else (i.e. docs viewed through a browser). This isn't the norm for most apps I work with either. Though

[issue18383] test_warnings modifies warnings.filters when running with "-W default"

2015-04-13 Thread Alex Shkop
Alex Shkop added the comment: Removed unnecessary assertWarns() contexts and fixed spelling errors. -- Added file: http://bugs.python.org/file38982/issue18383_assert_warns_and_dups_v2.patch ___ Python tracker

[issue23507] Tuple creation is too slow

2015-04-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: Unassigning because I don't have an interest in going further down this path. I used this technique with zip() because tuple reuse nicely benefited the common case of "for a,b,c in zip(alist, blist, clist): ...". On another thread, I did see mention of r

[issue23310] Mock constructor configuration fails for magic methods

2015-04-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4d1236b180be by Łukasz Langa in branch 'default': Issue #23310: Fix MagicMock's initializer to work with __methods__. https://hg.python.org/cpython/rev/4d1236b180be -- nosy: +python-dev ___ Python tracker

[issue20309] Not all method descriptors are callable

2015-04-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: I don't agree that this is a bug that should be fixed. It adds code that will likely never get called or needed (i.e. there has never been a request for this in the decade long history of desciptors and it seems like a made up requirement to me. I concu

[issue5438] test_bigmem.test_from_2G_generator uses more memory than expected

2015-04-13 Thread Joe Jevnik
Joe Jevnik added the comment: Steve, we talked about the possibility of having you run some of these tests on a machine with a large amount of ram; I am adding you to the nosy list. -- nosy: +steve.dower ___ Python tracker

[issue22631] Feature Request CAN_RAW_FD_FRAMES

2015-04-13 Thread Joe Jevnik
Joe Jevnik added the comment: So I think the patch could be applied to 3.4; I will look into moving the other back sometime this week. -- ___ Python tracker ___

[issue23350] Content-length is incorrect when request body is a list or tuple

2015-04-13 Thread Demian Brecht
Demian Brecht added the comment: Vincent: The logic to determine content length is undergoing a bit of an overhaul as part of #12319, which I'm hoping to wrap up in the next week or so. -- ___ Python tracker _

[issue23377] HTTPResponse may drop buffer holding next response

2015-04-13 Thread Demian Brecht
Demian Brecht added the comment: > I think it's ok to slightly break a non-public API since it's required to fix > an obvious bug. To play devil's advocate here, /is/ this really non-public API? According to documented Python naming conventions, HTTPResponse is part of the public API. From co

[issue23193] Please support "numeric_owner" in tarfile

2015-04-13 Thread Berker Peksag
Berker Peksag added the comment: * +.. method:: TarFile.extractall(path=".", members=None, numeric_owner=False) numeric_owner can be a keyword-only argument. * TarFile.extract and TarFile.extractall docs need a versionchanged directive. * It would be nice to add an entry to Doc/whatsnew/3.5.

[issue23193] Please support "numeric_owner" in tarfile

2015-04-13 Thread Eric V. Smith
Eric V. Smith added the comment: Other than Misc/NEWS, I think this is the final version of this patch. -- Added file: http://bugs.python.org/file38981/tarfile-numeric-owner-with-tests-3.diff ___ Python tracker __

[issue20362] longMessage attribute is ignored in unittest.TestCase.assertRegexpMatches etc

2015-04-13 Thread Ilia Kurenkov
Ilia Kurenkov added the comment: Thanks for the quick response, Berker! Let me address your comments in the order you made them. #1: removing checking for "kot" in the exception args. This line was causing the tests to fail, which is how I noticed it. The reason it fails (I think) is caused by

[issue23944] Argument Clinic: wrap impl's declaration if it's too long

2015-04-13 Thread Zachary Ware
Zachary Ware added the comment: Will do in the morning. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue23944] Argument Clinic: wrap impl's declaration if it's too long

2015-04-13 Thread Larry Hastings
Larry Hastings added the comment: If you give me a test case I'll knock this out. -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue23925] test_cmd_line failing on PYTHONSTARTUP

2015-04-13 Thread Jamiel Almeida
Jamiel Almeida added the comment: As pointed by ncoghlan, the test needs to (by definition) not use -E or -I, but PYTHONSTARTUP env var breaks the test, so the patch makes the env not have any pre-existing PYTHON* env vars. Ideally this should be another type of helper in script_helper, no? -

[issue21916] Create unit tests for turtle textonly

2015-04-13 Thread R. David Murray
R. David Murray added the comment: I made some review comments on ways to use test.support and test.subTest to simplify the code and make it even clearer. Also, I suggest not using Mock unless necessary (see review comments). -- nosy: +r.david.murray _

[issue23944] Argument Clinic: wrap impl's declaration if it's too long

2015-04-13 Thread Zachary Ware
New submission from Zachary Ware: For example: _winapi_CreateFile_impl(PyModuleDef *module, LPCTSTR file_name, DWORD desired_access, DWORD share_mode, LPSECURITY_ATTRIBUTES security_attributes, DWORD creation_disposition, DWORD flags_and_attributes, HANDLE template_file) -- components

[issue19543] Add -3 warnings for codec convenience method changes

2015-04-13 Thread Dustin J. Mitchell
Dustin J. Mitchell added the comment: This fixes the four cases Nick referred to, although not in the functions expected: - str.encode no longer exists - unicode.decode no longer exists - encoders used by str.encode must return bytes (does not apply to codecs.encode) - decoders used by uni

[issue22812] Documentation of unittest -p usage wrong on windows.

2015-04-13 Thread Zachary Ware
Zachary Ware added the comment: As an aside: Pam, I got a bounce notice from the email that Rietveld tried to send you. It claims that your email account is disabled, though I suspect that might be it's way of saying it thinks Rietveld is spam (since it tries to send in the reviewer's name).

[issue22812] Documentation of unittest -p usage wrong on windows.

2015-04-13 Thread Zachary Ware
Zachary Ware added the comment: I left a comment on Rietveld. Also, the test doesn't pass on Windows: test test_unittest failed -- Traceback (most recent call last): File "C:\Data\code\CPython\hg.python.org\devinabox\cpython\lib\unittest\test\t est_discovery.py", line 677, in test_command_lin

[issue12485] textwrap.wrap: new argument for more pleasing output

2015-04-13 Thread Gijsbert Anthony van der Linden
Gijsbert Anthony van der Linden added the comment: Updated the patch and added tests. Fixed a problem with the previous patch: result of map function was assumed to be list, however map in Python3 returns an interator. So I replaced it with a list comprehension. -- nosy: +gavanderlinde

[issue23921] Standardize documentation whitespace, formatting

2015-04-13 Thread James Edwards
James Edwards added the comment: Thanks Berker, I responded to most of your comments in rietveld. A few of your comments suggested "we should get rid of X", and while I can't say I disagree, I really tried to limit the scope of the changes to whitespace and formatting. As far as the script go

[issue23943] Misspellings in a few files

2015-04-13 Thread Piotr Kasprzyk
New submission from Piotr Kasprzyk: Correct misspellings in various files. -- assignee: docs@python components: Documentation files: misspellings.patch keywords: patch messages: 240825 nosy: docs@python, kwadrat priority: normal severity: normal status: open title: Misspellings in a few

[issue14484] missing return in win32_kill?

2015-04-13 Thread Zachary Ware
Zachary Ware added the comment: That's a fair point. So to make my plan work, we'd really need a good way to differentiate CTRL_C_EVENT and 0. If anybody has any good ideas on that, I still like my plan. If not, I'm afraid I have to agree that os.kill will need to go down as doomed by Windows'

[issue23719] PEP 475: port test_eintr to Windows

2015-04-13 Thread John Ehresman
John Ehresman added the comment: Here's the 1st draft of a test for interrupts during time.sleep(). It creates a thread to generate the ctrl-c events which seems to work well (note that kill() on win32 is quite limited in terms of sending events to other processes). The creation and use of t

[issue23496] Steps for Android Native Build of Python 3.4.2

2015-04-13 Thread Cyd Haselton
Cyd Haselton added the comment: Unfortunately starting from scratch did not solve the issue. Still getting a segfault when the newly built binary tries to run sysconfig -- ___ Python tracker _

[issue23686] Update Windows and OS X installer OpenSSL to 1.0.2a

2015-04-13 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 14.04.2015 01:36, Ned Deily wrote: > >> https://github.com/openssl/openssl/pull/218 >> (certificate expiry checks not working) > > That issue appears to have been fixed in 1.0.2a, no? Yes, but it shows the kind of errors to expect in the early stages of

[issue13814] Document why generators don't support the context management protocol

2015-04-13 Thread R. David Murray
R. David Murray added the comment: Looks like the right approach, I hadn't thought of the design FAQ, but it makes sense as a place to put it. I made a couple of review comments. -- nosy: +r.david.murray ___ Python tracker

[issue14484] missing return in win32_kill?

2015-04-13 Thread John Ehresman
John Ehresman added the comment: A problem with os.kill with CTRL_C_EVENT is that CTRL_C_EVENT == 0 and on unix kill w/ a signal number of 0 is how you test to see if a process is running. This means that code written on unix to see if a process exists will try to send a ctrl-c to the other p

[issue9517] Make test.script_helper more comprehensive, and use it in the test suite

2015-04-13 Thread Christie
Christie added the comment: Okee dokee, I'll tackle that first! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue13850] Summary tables for argparse add_argument options

2015-04-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi all, If you think the patch is ok, please merge it, we will close this issue. Thanks -- ___ Python tracker ___ ___

[issue13850] Summary tables for argparse add_argument options

2015-04-13 Thread R. David Murray
R. David Murray added the comment: I think it would be better to move the summary table to the end (just before the Action section), and add another link to the summary to the sentence "The following sections describe how each of these are used." That is, follow that sentence with something l

[issue14484] missing return in win32_kill?

2015-04-13 Thread Zachary Ware
Zachary Ware added the comment: I think what I'd rather do is deprecate the use of os.kill (on Windows) with a signal other than CTRL_C_EVENT and CTRL_BREAK_EVENT, document very clearly that os.kill is strictly for sending signals, and add os.terminate to implement TerminateProcess. -

[issue23929] Minor typo (way vs. away) in os.renames docstring

2015-04-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 94c3cd410cf6 by Benjamin Peterson in branch '3.4': remove useless word (closes #23929) https://hg.python.org/cpython/rev/94c3cd410cf6 New changeset feb0717c1004 by Benjamin Peterson in branch '2.7': remove useless word (closes #23929) https://hg.pyt

[issue11754] Check calculated constants in test_string.py

2015-04-13 Thread R. David Murray
R. David Murray added the comment: Thanks, Chalmer. Hopefully Benjamin won't be too annoyed by these :) -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed versions: -Python 2.7, Python 3.4 ___ Python tracker

[issue11754] Check calculated constants in test_string.py

2015-04-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset e1457e9f340f by R David Murray in branch 'default': #11754: test contents of string module attributes. https://hg.python.org/cpython/rev/e1457e9f340f -- nosy: +python-dev ___ Python tracker

[issue23686] Update Windows and OS X installer OpenSSL to 1.0.2a

2015-04-13 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 14.04.2015 01:41, Donald Stufft wrote: > > I'm pretty massively +1 in Python shipping 1.0.2 (or really, whatever the > latest OpenSSL is) wherever it can, including the OSX installers even on > systems where Apple ships it's ancient OpenSSL. Eventually

[issue14484] missing return in win32_kill?

2015-04-13 Thread John Ehresman
John Ehresman added the comment: I think at a minimum, a return should be added in the cases that call GenerateConsoleCtrlEvent and it fails. Here's a more radical proposal, though: deprecate kill() on Windows and add a function that calls GenerateConsoleCtrlEvent and another that calls Termi

[issue4254] _cursesmodule.c callable update_lines_cols()

2015-04-13 Thread Ned Deily
Changes by Ned Deily : -- nosy: +twouters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue23686] Update Windows and OS X installer OpenSSL to 1.0.2a

2015-04-13 Thread Donald Stufft
Donald Stufft added the comment: I think 1.0.2 is the only version of OpenSSL that has the ability to short circuit the chain validation which is something that makes it easier for libraries like requests to remove the weak 1024 bit roots from their SSL certificate store. It's also needed for

[issue10612] StopTestRun exception to halt test run

2015-04-13 Thread R. David Murray
R. David Murray added the comment: I've added some review comments. I did not download the patch and run the tests etc; it would be great if you could find another sprinter (or anyone :) to do that level of review. -- ___ Python tracker

[issue23686] Update Windows and OS X installer OpenSSL to 1.0.2a

2015-04-13 Thread Ned Deily
Ned Deily added the comment: I don't have a really strong feeling one way or the other. It's not a big issue for the OS X installers as this only affects the much-less-used 32-bit-only installer for old systems. So this is really primarily an issue affecting the Windows installers. I guess

[issue17445] Handle bytes comparisons in difflib.Differ

2015-04-13 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20586] Argument Clinic: functions with valid sig but no docstring have no __text_signature__

2015-04-13 Thread Zachary Ware
Zachary Ware added the comment: Thanks Larry -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.4 ___ Python tracker ___ ___

[issue23922] turtle.py and turtledemo use the default tkinter icon

2015-04-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: The blue feather is the tk 8.6 icon. The tk 8.5 and before icon is a red script 'Tk'. The title bar icons for Idle were added in #20406. It was a bit of a challenge to get them to work right and look good enough for all versions on all systems. The icons w

[issue20586] Argument Clinic: functions with valid sig but no docstring have no __text_signature__

2015-04-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset e75fd221a53e by Zachary Ware in branch 'default': Issue #20586: Argument Clinic now ensures signatures on functions without docstrings. https://hg.python.org/cpython/rev/e75fd221a53e -- nosy: +python-dev ___

[issue11754] Check calculated constants in test_string.py

2015-04-13 Thread chalmer_lowe
chalmer_lowe added the comment: Based on review comments, in order to reduce unnecessary redundancy in the tests: - composed later strings from previously defined substrings, where it made sense to do so. -- Added file: http://bugs.python.org/file38975/issue11754_patch_2.txt _

[issue20586] Argument Clinic: functions with valid sig but no docstring have no __text_signature__

2015-04-13 Thread Larry Hastings
Larry Hastings added the comment: LGTM -- assignee: -> zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue9517] Make test.script_helper more comprehensive, and use it in the test suite

2015-04-13 Thread R. David Murray
R. David Murray added the comment: Apparently I was imaginig that script_helpers had been moved into test.support. test.support was changed into a module in prep for doing so, but as far as I can see it was never moved. So that does remain to be done as well, and should be done first. -

[issue23942] Explain naming of the patch files in the bug tracker

2015-04-13 Thread Maciej Szulik
New submission from Maciej Szulik: During the lifecycle of a bug you do: 1. submit a patch 2. get a review with some comments 3. re-submit the patch Talking to R. David Murray I got info there's no convention on naming those, I think it will be valuable to have some information in the devguide

[issue22631] Feature Request CAN_RAW_FD_FRAMES

2015-04-13 Thread Matthias Klose
Matthias Klose added the comment: it would be nice to have these constants backported to both 2.7 and 3.4. It may be good to check for other missing consgtants in this module in 2.7 and 3.4. -- nosy: +doko ___ Python tracker

[issue21400] Code coverage documentation is out-of-date.

2015-04-13 Thread Ned Deily
Ned Deily added the comment: Done. Thanks for the patch, Heather. (By the way, if you plan to contribute more changes, please sign the PSF Contributor Form as described here: https://docs.python.org/devguide/coredev.html#sign-a-contributor-agreement) -- nosy: +ned.deily resolution:

[issue16914] timestamping in smtplib.py to help troubleshoot server timeouts/delays

2015-04-13 Thread Maciej Szulik
Maciej Szulik added the comment: Uploading updated version of the patch. -- Added file: http://bugs.python.org/file38974/issue16914.patch ___ Python tracker ___ _

[issue21400] Code coverage documentation is out-of-date.

2015-04-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 24536e980c9e by Ned Deily in branch 'default': Issue #21400: Update the code coverage section to remove out-of-date https://hg.python.org/devguide/rev/24536e980c9e -- nosy: +python-dev ___ Python tracker

[issue23686] Update Windows and OS X installer OpenSSL to 1.0.2a

2015-04-13 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 14.04.2015 00:29, Ned Deily wrote: > > For what it's worth, the resolution of Issue23476 uses an API that was added > in OpenSSL 1.0.2. Hmm, I don't think that's a good move at this time. Most Linux users won't benefit from this since their system Open

[issue4254] _cursesmodule.c callable update_lines_cols()

2015-04-13 Thread Arnon Yaari
Changes by Arnon Yaari : Added file: http://bugs.python.org/file38973/patch_4254.diff ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue23926] skipitem() in getargs.c still supports 'w' and 'w#', and shouldn't

2015-04-13 Thread Joe Jevnik
Joe Jevnik added the comment: here is a patch and test case. I added an entry to Misc/NEWS. I tried to follow the format; however, let me know if I have done this incorrectly. -- keywords: +patch nosy: +ll Added file: http://bugs.python.org/file38972/skipitems.patch ___

[issue4254] _cursesmodule.c callable update_lines_cols()

2015-04-13 Thread Arnon Yaari
Changes by Arnon Yaari : Added file: http://bugs.python.org/file38971/manual_test_4254.py ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue4254] _cursesmodule.c callable update_lines_cols()

2015-04-13 Thread Arnon Yaari
Arnon Yaari added the comment: Creating an automatic test for this issue proves difficult, as using curses to resize the terminal already updates the values, and using ioctls to try to bypass curses, doesn't work. I'm adding a manual test program (mostly taken from http://www.gossamer-threads.

[issue21815] imaplib truncates some untagged responses

2015-04-13 Thread Maciej Szulik
Maciej Szulik added the comment: Lita always look for them next to your uploaded file, there's a review link that points to Rietveld Code Review Tool. There you'll find all those information, just for future use :) -- ___ Python tracker

[issue21217] inspect.getsourcelines finds wrong lines when lambda used argument to decorator

2015-04-13 Thread Nick Coghlan
Nick Coghlan added the comment: It sounds like at least a somewhat functional dis module is a pragmatic requirement for a Python implementation to support introspection, so +1 for reverting to the mandatory dependency on dis rather than duplicating its logic. -- nosy: +ncoghlan __

[issue21400] Code coverage documentation is out-of-date.

2015-04-13 Thread Carol Willing
Carol Willing added the comment: Patch applies cleanly. The out of date link has been removed. +1 ready for a core dev to merge. -- nosy: +willingc stage: patch review -> commit review ___ Python tracker __

[issue23686] Update Windows and OS X installer OpenSSL to 1.0.2a

2015-04-13 Thread Ned Deily
Ned Deily added the comment: For what it's worth, the resolution of Issue23476 uses an API that was added in OpenSSL 1.0.2. -- ___ Python tracker ___ ___

[issue21217] inspect.getsourcelines finds wrong lines when lambda used argument to decorator

2015-04-13 Thread Thomas Ballinger
Thomas Ballinger added the comment: Use dis.findlinestarts() to find lines of function instead of grubbing with co_lnotab manually, making dis module dependency non-optional. -- Added file: http://bugs.python.org/file38970/issue21217-v6.patch ___ Pyt

[issue23924] Add OS X to Dev Guide Quickstart build step

2015-04-13 Thread Ned Deily
Ned Deily added the comment: Done. Thanks for the patch! -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___

[issue23924] Add OS X to Dev Guide Quickstart build step

2015-04-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 56b0001c7a29 by Ned Deily in branch 'default': Issue #23924: Expand the QuickStart section to mention OS X and link https://hg.python.org/devguide/rev/56b0001c7a29 -- nosy: +python-dev ___ Python tracker

[issue19907] gettext - Non ascii chars in header

2015-04-13 Thread Michael McFadden
Michael McFadden added the comment: I'm having no luck reproducing this issue. Regarding pygettext.py generating .po files: I've used the messages.po file provided by the OP, and also using a generated .po file from pygettext.py with the offending header PO-Revision-Date: As a side note, I'm

[issue20586] Argument Clinic: functions with valid sig but no docstring have no __text_signature__

2015-04-13 Thread Zachary Ware
Zachary Ware added the comment: Here's an updated patch for clean application. Larry, could you give this a look? -- Added file: http://bugs.python.org/file38969/issue20586.v3.diff ___ Python tracker

[issue23931] Update DevGuide link in Quickstart Step 1

2015-04-13 Thread Carol Willing
Carol Willing added the comment: @berker.peksag I think that new contributors (esp. those at the sprints) want to get started quickly. Many do not read the whole devguide before starting even though the devguide is really helpful. I like your suggested approach to keep the original link and ad

[issue23940] test__supports_universal_builds failure on Python 3.5.0a0 osx 10.6

2015-04-13 Thread Ned Deily
Changes by Ned Deily : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue23939] test_get_platform_osx failure on Python 3.5.0a0 osx 10.6

2015-04-13 Thread Ned Deily
Ned Deily added the comment: No problem, and thanks for looking into it. -- status: open -> closed ___ Python tracker ___ ___ Python-b

[issue23773] importlib does not properly remove frames when invoking external import hooks

2015-04-13 Thread Shiz
Shiz added the comment: Ah, that is a very good point. I'll run the suite as soon as I find the time and will report back. -- ___ Python tracker ___

[issue23939] test_get_platform_osx failure on Python 3.5.0a0 osx 10.6

2015-04-13 Thread Alex Lord
Alex Lord added the comment: Ah, Alright. I thought that hg up would bring me up to speed. Sorry for that. -- status: pending -> open ___ Python tracker ___ _

[issue23941] Google Login not working

2015-04-13 Thread Ned Deily
Ned Deily added the comment: Ernest, sorry you are having problems. Issues with using the tracker itself are handled elsewhere. Click on the "Report Tracker Problem" link in the "Help" section at the bottom of the left-hand column of this web page and that should take you to http://psf.upfro

[issue23686] Update Windows and OS X installer OpenSSL to 1.0.2a

2015-04-13 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Are you sure you want to go with OpenSSL 1.0.2a ? It typically takes a few patch level releases for them to clear out all the major bugs (including security relevant ones). For egenix-pyopenssl, we've chose to stay with 1.0.1 for the time being until the

[issue23924] Add OS X to Dev Guide Quickstart build step

2015-04-13 Thread Carol Willing
Carol Willing added the comment: @ned.deily Thanks for the review. Please push for me. Thanks :) -- ___ Python tracker ___ ___ Python-

[issue23931] Update DevGuide link in Quickstart Step 1

2015-04-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, but I think the current link is correct. Contributors will need to read the whole page anyway :) If you want to mention https://docs.python.org/devguide/setup.html#version-control-setup in index.rst, I'd suggest something like this: 1. :

[issue22980] C extension naming doesn't take bitness into account

2015-04-13 Thread Matthias Klose
Matthias Klose added the comment: On 04/13/2015 11:43 PM, Nick Coghlan wrote: > > Nick Coghlan added the comment: > > Maintaining the arch list can be delegated to the platform maintainers, but I > agree a test would be valuable. > > I'd suggest a test in the platform module tests that cross-

[issue22631] Feature Request CAN_RAW_FD_FRAMES

2015-04-13 Thread Larry Hastings
Larry Hastings added the comment: Patch committed. Thanks, Joe! -- assignee: -> larry resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker __

[issue22631] Feature Request CAN_RAW_FD_FRAMES

2015-04-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 03ff92b26fa9 by Larry Hastings in branch 'default': Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES. https://hg.python.org/cpython/rev/03ff92b26fa9 -- nosy: +python-dev ___ Python tra

[issue23730] Document return value for ZipFile.extract()

2015-04-13 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the patch! -- nosy: +zach.ware versions: -Python 3.6 ___ Python tracker ___ ___ Python-bug

[issue23852] Wrong computation of max_fd on OpenBSD

2015-04-13 Thread Gregory P. Smith
Gregory P. Smith added the comment: getrlimit() is not an async-signal-safe function according to http://pubs.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_04.html so you cannot call it from safe_get_max_fd(). having the getrlimit call done prior to the fork and using the value retur

[issue23730] Document return value for ZipFile.extract()

2015-04-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 731e366885f5 by Zachary Ware in branch '2.7': Issue #23730: Document the return value of ZipFile.extract https://hg.python.org/cpython/rev/731e366885f5 New changeset 7ac1c2307a70 by Zachary Ware in branch '3.4': Issue #23730: Document the return val

[issue23642] Interaction of ModuleSpec and C Extension Modules

2015-04-13 Thread Raúl Cumplido
Changes by Raúl Cumplido : -- nosy: +raulcd ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue22980] C extension naming doesn't take bitness into account

2015-04-13 Thread Nick Coghlan
Nick Coghlan added the comment: Maintaining the arch list can be delegated to the platform maintainers, but I agree a test would be valuable. I'd suggest a test in the platform module tests that cross-checks the settings in SOABI. This will also be useful in defining an algorithm that setuptoo

[issue23723] Provide a way to disable bytecode staleness checks

2015-04-13 Thread Raúl Cumplido
Changes by Raúl Cumplido : -- nosy: +raulcd ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue23940] test__supports_universal_builds failure on Python 3.5.0a0 osx 10.6

2015-04-13 Thread Ned Deily
Ned Deily added the comment: This also appears to be due to not building with an up-to-date version of the source (see msg240759 in Issue23939). -- resolution: -> out of date stage: -> resolved status: open -> pending ___ Python tracker

[issue21062] Evalute all import-related modules for best practices

2015-04-13 Thread Raúl Cumplido
Changes by Raúl Cumplido : -- nosy: +raulcd ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue23937] IDLE start maximized

2015-04-13 Thread Al Sweigart
Al Sweigart added the comment: +1 to this idea. In classroom settings when I look over the shoulder of students, usually they're working with IDLE or an editor in a much smaller window. When I point out how to maximize it, they always enjoy the additional space. It seems like a minor thing, b

[issue23773] importlib does not properly remove frames when invoking external import hooks

2015-04-13 Thread Raúl Cumplido
Changes by Raúl Cumplido : -- nosy: +raulcd ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue19956] inspect.getsource(obj.foo) fails when foo is an injected method constructed from another method

2015-04-13 Thread R. David Murray
R. David Murray added the comment: Thanks for the patch. I've made some review comments on the tests. -- nosy: +r.david.murray ___ Python tracker ___ ___

[issue20309] Not all method descriptors are callable

2015-04-13 Thread Ernest
Changes by Ernest : -- nosy: +ozialien ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/

[issue23911] Move path-based bootstrap code to a separate frozen file.

2015-04-13 Thread Raúl Cumplido
Changes by Raúl Cumplido : -- nosy: +raulcd ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue23924] Add OS X to Dev Guide Quickstart build step

2015-04-13 Thread Ned Deily
Ned Deily added the comment: The updates look good to me, thanks! Are you able to push this? If not, I can do it. -- stage: -> commit review ___ Python tracker ___ __

  1   2   3   4   >