[issue20909] 3.4 cherry pick: d22ef969cb82 new distribution & installation guides

2014-03-13 Thread Nick Coghlan
New submission from Nick Coghlan: Cherry pick request for the Installation & Distribution docs updates for PEP 453. New changeset d22ef969cb82 by Nick Coghlan in branch 'default': Close #19407: New installation & distribution guides http://hg.python.org/cpython/rev/d22ef969cb82 -- assi

[issue19407] PEP 453: update the "Installing Python Modules" documentation

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset f5be4ea5b43e by Nick Coghlan in branch 'default': Issue #19407: fix link http://hg.python.org/cpython/rev/f5be4ea5b43e -- ___ Python tracker __

[issue20909] 3.4 cherry pick: d22ef969cb82 & f5be4ea5b43e new distribution & installation guides

2014-03-13 Thread Nick Coghlan
Nick Coghlan added the comment: Additional change set to fix a couple of malformed links: New changeset f5be4ea5b43e by Nick Coghlan in branch 'default': Issue #19407: fix link http://hg.python.org/cpython/rev/f5be4ea5b43e -- title: 3.4 cherry pick: d22ef969cb82 new distribution & insta

[issue20884] importlib/__init__.py can not be loaded without __file__ - breaks cxFreeze

2014-03-13 Thread Brett Cannon
Brett Cannon added the comment: I assume you mean for 3. to fix PyImport_ImportFrozenModuleObject() and not stop resetting __file__ for _frozen_importlib in importlib.__init__ like we are currently doing. I think you're right that it could wait until 3.5 as it will only be apparent to people w

[issue19257] Sub-optimal error message when importing a non-package

2014-03-13 Thread Brett Cannon
Brett Cannon added the comment: Is it confusing though? If you only had the latter exception all you would know is Python doesn't consider datetime a package but you wouldn't know why that is unless you knew the exact definition (the __path__ attribute exists). Having the former exception help

[issue20910] Make sleep configurable in tests

2014-03-13 Thread STINNER Victor
New submission from STINNER Victor: Hi, I'm trying to make Python test suite reliable, but it's hard because the speed of our farm of buildbots varies a lot. The whole test suite takes less than 10 minutes on some buildbots (or event less than 5 minutes), while it took 10 hours on other build

[issue18217] Deprecate and remove gettext.install

2014-03-13 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Mar 13, 2014, at 05:15 AM, Éric Araujo wrote: >The source contains :meth:`self.gettext`, and Sphinx adds the parentheses >when creating markup for a function, probably because it’s common to say >things like “the len() function”. There is a Sphinx config va

[issue20910] Make sleep configurable in tests

2014-03-13 Thread STINNER Victor
STINNER Victor added the comment: The test suite pass with test_sleep.patch applied on my fast Linux PC. The test must be tested on Windows (because of the clock resolution of 15.6 ms). I run the unit test using the command "./python -m test -j0 -rW". By the way, do you have an idea to simulat

[issue20891] PyGILState_Ensure on non-Python thread causes fatal error

2014-03-13 Thread STINNER Victor
STINNER Victor added the comment: IMO it's a bug in PyEval_InitThreads(). -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue20910] Make sleep configurable in tests

2014-03-13 Thread R. David Murray
R. David Murray added the comment: Would it be possible for regrtest to do some operations to estimate the speed and choose "good values" for the constants automatically? If you have the right kind of VM setup, you could simulate a slow buildbot by giving the VM a low CPU share and then runnin

[issue20265] Bring Windows docs up to date

2014-03-13 Thread Zachary Ware
Zachary Ware added the comment: Éric Araujo wrote: > From #20265: Correction, this is #20265, that message was from #20266 :) Kathleen: both Éric and I have left some review comments for you in Rietveld, which should have sent you an email with the comments and links to the Rietveld review.

[issue20265] Bring Windows docs up to date

2014-03-13 Thread Kathleen Weaver
Kathleen Weaver added the comment: It was Visual Studio that messed up the end of line feeds, it keep telling me that there was a problem but I didn't know what it meant. Erik and I were in #pyladies and he really helped me. As soon as I get done with gym and other mundane errands I will get

[issue19247] Describe surrogateescape algorithm in the Library Reference

2014-03-13 Thread R. David Murray
R. David Murray added the comment: Looking at the PEP, I don't think there's anything in there that can just be copied to the docs. I've suggested to one of the new contributors to do the break out of the error handlers into its own section, and then someone with more understanding of surroga

[issue15968] Incorporate Tcl/Tk/Tix into the Windows build process

2014-03-13 Thread Zachary Ware
Zachary Ware added the comment: The problem with the previous approach and building inside Visual Studio was that makefile.vc in both Tcl and Tk first checks for one of "MSDEVDIR", "MSVCDIR", "VCINSTALLDIR", "MSSDK" or "WINDOWSSDKDIR" being set, which Visual Studio doesn't set. That issue cou

[issue20910] Make sleep configurable in tests

2014-03-13 Thread STINNER Victor
STINNER Victor added the comment: "Would it be possible for regrtest to do some operations to estimate the speed and choose "good values" for the constants automatically?" It might be possible to make the parameters dynamic, for example using the system loads. But I'm not really interested to

[issue20910] Make sleep configurable in tests

2014-03-13 Thread STINNER Victor
STINNER Victor added the comment: > The test must be tested on Windows (because of the clock resolution of 15.6 > ms). The test suite pass on Windows too ("PCbuild\python_d.exe -m test"). -- ___ Python tracker __

[issue20911] urllib 'headers' is not a well defined data type

2014-03-13 Thread R. David Murray
New submission from R. David Murray: Some places in the code it is an email.message.Message object. Some places it is a simple dictionary. In one place (FTP), it is a string with embedded newlines. I'm not sure what should be done about this situation, but it looks like a bug magnet, and it

[issue20910] Make sleep configurable in tests

2014-03-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: > It might be possible to make the parameters dynamic, for example > using > the system loads. But I'm not really interested to invest too much time > on optimizing the timing parameters for buildbots. I would like to > ensure that tests pass with a short "test s

[issue20517] Support errors with two filenames for errno exceptions

2014-03-13 Thread R. David Murray
R. David Murray added the comment: In 3.3: >>> x = OSError(2, 'No such file or directory', 'foo', 0, 'bar') >>> str(x) "(2, 'No such file or directory', 'foo', 0, 'bar')" So, I don't see this as a realistic backwards compatibility problem worthy of a porting note. -- nosy: +r.david.mu

[issue20908] Memory leak in Reg2Py()

2014-03-13 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: I take care of this. -- assignee: -> jcea nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list

[issue15701] AttributeError from HTTPError when using digest auth

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 361c10d06b9c by R David Murray in branch 'default': whatsnew: HTTPError.headers (#15701). http://hg.python.org/cpython/rev/361c10d06b9c -- ___ Python tracker _

[issue20784] 'collections.abc' is no longer defined when collections is imported

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset d575398d1916 by R David Murray in branch 'default': whatsnew: collections no longer implicitly imports 'abc' (#20784). http://hg.python.org/cpython/rev/d575398d1916 -- ___ Python tracker

[issue20784] 'collections.abc' is no longer defined when collections is imported

2014-03-13 Thread R. David Murray
R. David Murray added the comment: I've documented that 'collections.abc' is no longer implicit, which I presume means we are going to keep this behavior. (Unless you tell me to revert that and we fix it as a regression in 3.4.1). As long as an application follows the note and explicitly impo

[issue19861] Update What's New for Python 3.4

2014-03-13 Thread R. David Murray
R. David Murray added the comment: I'm done with everything in my edit queue except the final copy-edit/formatting pass. So if you know of anything missing, let me know. -- ___ Python tracker

[issue20908] Memory leak in Reg2Py()

2014-03-13 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: This is not actually important, since the program will finish a second after this. But cleanup is simple enough. -- versions: +Python 2.7 ___ Python tracker _

[issue20908] Memory leak in Reg2Py()

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset b44a3f6676b8 by Jesus Cea in branch '2.7': Closes #20908: Memory leak in Reg2Py() http://hg.python.org/cpython/rev/b44a3f6676b8 New changeset 07968254be96 by Jesus Cea in branch '3.3': Closes #20908: Memory leak in Reg2Py() http://hg.python.org/cpyt

[issue20912] [zipfile.py]: Make zip directory attributes more friendly for MS-Windows

2014-03-13 Thread Vitaly Murashev
New submission from Vitaly Murashev: When I use 'zip' command-line tool on my Ubuntu 10.04 to pack a directory in zip-archive, it internally assigns '0x41ed0010' attributes for it. 0x41ed0010 = 0x41ed << 0xfff + 0x0010 Where: 0x41ed - unix attributes (40755) 0x0010 - means # MS-DOS directo

[issue16104] Use multiprocessing in compileall script

2014-03-13 Thread Claudiu.Popa
Claudiu.Popa added the comment: Here's a new patch which addresses Éric's last comments. Antoine, I don't have at my disposal a system without multiprocessing support. How does it crash? -- Added file: http://bugs.python.org/file34400/issue16104_5.patch

[issue20910] Make sleep configurable in tests

2014-03-13 Thread Zachary Ware
Zachary Ware added the comment: I got a few failures on my Windows machine running `PCbuild\python_d.exe -m test -j0 -rW` [1], only one of which looks relevant [2]: == FAIL: test_monotonic (test.test_time.TimeTestCase)

[issue16104] Use multiprocessing in compileall script

2014-03-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Here's a new patch which addresses Éric's last comments. > Antoine, I don't have at my disposal a system without multiprocessing > support. How does it crash? Neither do I, but you will probably get an ImportError of some sort. -- __

[issue672115] Assignment to __bases__ of direct object subclasses

2014-03-13 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue20904] HAVE_PY_SET_53BIT_PRECISION for m68k

2014-03-13 Thread Mark Dickinson
Mark Dickinson added the comment: Technically I guess this counts as a new feature. It would be painful to have to wait for 3.5, though. I wonder whether we can sneak this in after 3.4 is released? Is the __mc68000__ #define specific to gcc? -- _

[issue12901] Nest class/methods directives in documentation

2014-03-13 Thread Georg Brandl
Georg Brandl added the comment: Agreed. -- status: pending -> open ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue5207] extend strftime/strptime format for RFC3339 and RFC2822

2014-03-13 Thread Tin Tvrtković
Changes by Tin Tvrtković : -- nosy: +tinchester ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue16104] Use multiprocessing in compileall script

2014-03-13 Thread Claudiu.Popa
Claudiu.Popa added the comment: Here's a new version which catches ImportError for concurrent.futures and raises ValueError in `compile_dir` if `processes` was specified and concurrent.futures is unavailable. The only issue is that I don't know if this should be a ValueError or not. For instan

[issue20910] Make sleep configurable in tests

2014-03-13 Thread STINNER Victor
STINNER Victor added the comment: > AssertionError: timing 608.0 ms seconds > max timing 500.0 ms seconds; > the clock 'monotonic' has a resolution of 15.6 ms; > tolerate 1.0 ms seconds Is it a virtual machine or a physical machine? Was your Windows busy? Did you run tests in parallel? Only to

[issue20910] Make sleep configurable in tests

2014-03-13 Thread STINNER Victor
STINNER Victor added the comment: more_reliable_tests.patch: Work-in-progress patch to make some tests more reliable with very short "test sleep" (I tested with 1 ns on my Linux box). -- Added file: http://bugs.python.org/file34402/more_reliable_tests.patch

[issue20913] Standard Library documentation needs SSL security best practices doc.

2014-03-13 Thread R. David Murray
New submission from R. David Murray: It's great that Christian did all the work he did on the SSL module to enhance its security capabilities, and great that Antoine did the work he did before that. Now we need an explanation of how best to use it all :) It is not clear from the existing doc

[issue20904] HAVE_PY_SET_53BIT_PRECISION for m68k

2014-03-13 Thread Andreas Schwab
Andreas Schwab added the comment: I don't know of any other compiler on m68k. -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue20913] Standard Library documentation needs SSL security best practices doc.

2014-03-13 Thread R. David Murray
Changes by R. David Murray : -- assignee: christian.heimes -> components: +Documentation stage: -> needs patch type: -> enhancement versions: +Python 3.4, Python 3.5 ___ Python tracker __

[issue20910] Make sleep configurable in tests

2014-03-13 Thread STINNER Victor
STINNER Victor added the comment: Other tests should use check_time_delta(): test_wait_for_handle() of Lib/test/test_asyncio/test_windows_events.py test_call_later() of Lib/test/test_asyncio/test_events.py test_run_until_complete() of Lib/test/test_asyncio/test_events.py -- ___

[issue20913] Standard Library documentation needs SSL security best practices doc.

2014-03-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue20908] Memory leak in Reg2Py()

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6e3e91662216 by Victor Stinner in branch 'default': Issue #20908: PyMem_Malloc() must be used with PyMem_Free(), not with free() http://hg.python.org/cpython/rev/6e3e91662216 -- ___ Python tracker

[issue20517] Support errors with two filenames for errno exceptions

2014-03-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: OK then. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue20904] HAVE_PY_SET_53BIT_PRECISION for m68k

2014-03-13 Thread Stefan Krah
Stefan Krah added the comment: Mark Dickinson wrote: > I wonder whether we can sneak this in after 3.4 is released? +1. m68k affects a relatively small group of people, and Andreas Schwab is the gcc m68k port maintainer, so ... -- ___ Python tracker

[issue20904] HAVE_PY_SET_53BIT_PRECISION for m68k

2014-03-13 Thread Larry Hastings
Larry Hastings added the comment: Does Python still officially support m68k? -- nosy: +larry ___ Python tracker ___ ___ Python-bugs-li

[issue20265] Bring Windows docs up to date

2014-03-13 Thread Kathleen Weaver
Kathleen Weaver added the comment: I have updated the files as reflected by the code review. -- Added file: http://bugs.python.org/file34403/windowsDoc.patch ___ Python tracker _

[issue20265] Bring Windows docs up to date

2014-03-13 Thread Kathleen Weaver
Kathleen Weaver added the comment: Could we make this a separate issue, and I will work on it next? >From #20265: The faq doesn't mention the new launcher for Windows. Rather than write too much I'd simply cross reference this http://docs.python.org/3/using/windows.html#python-launcher-for-w

[issue13936] RFE: change bool(datetime.time(0, 0, 0)) to evaluate as True

2014-03-13 Thread Justin Brown
Justin Brown added the comment: This behavior conflicts with the other major classes, datetime.date and datetime.datetime. The ostensible reason for this falsy behavior is that midnight represents a fundamental zero point. We should expect to see similar zero points that evaluate to False for

[issue20517] Support errors with two filenames for errno exceptions

2014-03-13 Thread R. David Murray
R. David Murray added the comment: I was going to wonder if the args thing was a bug, but I see that actually it continues the backward-compatibility tradition already established (python3.3): >>> x = OSError(2, 'No such file or directory', 'abc') >>> str(x) "[Errno 2] No such file or directory

[issue20517] Support errors with two filenames for errno exceptions

2014-03-13 Thread R. David Murray
R. David Murray added the comment: (Ether that, or it is a long-standing bug.) -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue20905] Adapt heapq push/pop/replace to allow passing a comparator.

2014-03-13 Thread Mark Lawrence
Mark Lawrence added the comment: See also #13742. -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue20914] pyopenssl-0.14-1 error

2014-03-13 Thread Vladimir
New submission from Vladimir: After update python2.7-pyopenssl-0.13.1-1 to python2.7-pyopenssl-0.14-1 i have this error on opening deluge. Packpage downgrade solv problem. OS: Archlinux /usr/lib/python2.7/site-packages/gtk-2.0/gtk/__init__.py:57: GtkWarning: could not open display warnings.

[issue20517] Support errors with two filenames for errno exceptions

2014-03-13 Thread Larry Hastings
Larry Hastings added the comment: Yeah, I admit I don't understand what problem that code was solving. But it looked Very Deliberate so I preserved the behavior. -- ___ Python tracker

[issue20912] [zipfile.py]: Make zip directory attributes more friendly for MS-Windows

2014-03-13 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___ Pytho

[issue20914] pyopenssl-0.14-1 error

2014-03-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: pyopenssl is a third-party library. bugs.python.org should only be used for bugs in the Python interpreter and its standard library, please open an issue in the pyopenssl bug tracker (if that exists) instead. -- nosy: +pitrou resolution: -> 3rd party

[issue20910] Make sleep configurable in tests

2014-03-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't like these patches at all. It is not obvious that making sleep times configurable improves things at all, and it's one more complication in the test suite that people will have to care about. -- nosy: +neologix

[issue20910] Make sleep configurable in tests

2014-03-13 Thread Ned Deily
Ned Deily added the comment: I agree with Antoine. There is never going to be a right value for sleep: the behavior of the buildbots can vary so much from run to run, especially if there are multiple VMs running on one host. If anything, we should be working to remove as many "sleep" depende

[issue14894] distutils.LooseVersion fails to compare number and a word

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: > Unfortunately, the current likely answer re updating vanilla distutils to > handle the new > standards is "we won't". The backwards compatibility issues involved are just > too hairy > for us to start enabling by default in the standard library, and I've become

[issue16104] Use multiprocessing in compileall script

2014-03-13 Thread Claudiu.Popa
Changes by Claudiu.Popa : Added file: http://bugs.python.org/file34404/issue16104_7.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue14894] distutils.LooseVersion fails to compare number and a word

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: Forgot one: * Can we add tar.xz support to sdist? -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue20910] Make sleep configurable in tests

2014-03-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: How much this patch speeds up testing? Especially interesting results for medium-speed buildbots (about a hour). -- ___ Python tracker ___ __

[issue20915] Add “pip” section to experts list in devguide

2014-03-13 Thread Éric Araujo
New submission from Éric Araujo: With pip installed by Python and new distutils fixes on the table, I think it will be needed to make pip developers nosy on bugs.python.org issues. (For many issues we’ll have to close the ticket here and ask to report on github/pypa/pip, but other tickets wil

[issue16989] allow distutils debug mode to be enabled more easily

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: Thanks for weighing in. (Adding Donald as pip representative.) > I'd prefer the patch be accepted or rejected on merits. The current patch is incomplete because not fully backward-compatible: even if we imported “distutils.debug” everywhere, we’d still need to s

[issue16989] allow distutils debug mode to be enabled more easily

2014-03-13 Thread Jason R. Coombs
Jason R. Coombs added the comment: That's entirely reasonable. I thought maybe that was the case. My instinct is that 100% backward compatibility may not be necessary, especially if setuptools and pip are in the loop and can assure compatibility at some level. I'll dig deeper into the issue fr

[issue20909] 3.4 cherry pick: d22ef969cb82 & f5be4ea5b43e new distribution & installation guides

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 25dc02a2acae by Ned Deily in branch 'default': Issue #19407: Fix typos in new distribution & installation guides. http://hg.python.org/cpython/rev/25dc02a2acae -- nosy: +python-dev ___ Python tracker

[issue19407] PEP 453: update the "Installing Python Modules" documentation

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 25dc02a2acae by Ned Deily in branch 'default': Issue #19407: Fix typos in new distribution & installation guides. http://hg.python.org/cpython/rev/25dc02a2acae -- ___ Python tracker

[issue20909] 3.4 cherry pick: d22ef969cb82 & f5be4ea5b43e & 25dc02a2acae new distribution & installation guides

2014-03-13 Thread Ned Deily
Changes by Ned Deily : -- title: 3.4 cherry pick: d22ef969cb82 & f5be4ea5b43e new distribution & installation guides -> 3.4 cherry pick: d22ef969cb82 & f5be4ea5b43e & 25dc02a2acae new distribution & installation guides ___ Python tracker

[issue16805] when building docs on Debian 7 --> ERROR: Error in "note" directive

2014-03-13 Thread Tshepang Lekhonkhobe
Tshepang Lekhonkhobe added the comment: thanks much for the commit -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue20916] ssl.enum_certificates() will not return all certificates trusted by Windows

2014-03-13 Thread Adam Goodman
New submission from Adam Goodman: Starting with Vista, Microsoft began shipping only a very minimal set of root CA certificates with Windows. Microsoft does trust many other authorities, but for these, Windows relies on the "Update Root Certificates" feature: http://technet.microsoft.com/en-us

[issue20916] ssl.enum_certificates() will not return all certificates trusted by Windows

2014-03-13 Thread Adam Goodman
Changes by Adam Goodman : Added file: http://bugs.python.org/file34405/win_ca_test.py ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue20906] Issues in Unicode HOWTO

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +benjamin.peterson, eric.araujo, ezio.melotti, haypo, lemburg, pitrou title: Unicode HOWTO -> Issues in Unicode HOWTO versions: -Python 3.1, Python 3.2, Python 3.5 ___ Python tracker

[issue20917] Idle: Enhance font change notification system

2014-03-13 Thread Terry J. Reedy
New submission from Terry J. Reedy: If one changes the font in the Idle Preferences dialog, all open windows are somehow notified and they immediately respond. Classes defined in extensions do not get notified. So CodeContext sets up a polling loop. Roger Serwy's line number extension (posted

[issue1109658] distutils dry-run breaks when attempting to bytecompile

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Distutils -Distutils2 versions: +Python 2.7, Python 3.3, Python 3.4 -3rd party ___ Python tracker ___ _

[issue13038] bdist_wininst installers should warn if target dir is read-only

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Distutils -Distutils2 versions: +Python 3.5 -3rd party, Python 3.3 ___ Python tracker ___ ___

[issue13038] bdist_wininst installers should warn if target dir is read-only

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- Removed message: http://bugs.python.org/msg145115 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue12895] In MSI/EXE installer, allow installing Python modules in free path

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: Closing per Martin’s message. -- components: +Distutils -Distutils2 resolution: -> rejected stage: -> committed/rejected status: open -> closed versions: -Python 3.3 ___ Python tracker

[issue8501] setup.py install --dry-run option doesn't work

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: Narrowing the scope of this issue to only cover the original request. -- components: +Distutils -Distutils2 resolution: accepted -> title: --dry-run option doesn't work -> setup.py install --dry-run option doesn't work versions: +Python 3.5 -3rd party __

[issue5572] distutils should respect the LIBS configure env var

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Distutils -Distutils2 title: packaging should respect the LIBS configure env var -> distutils should respect the LIBS configure env var versions: +Python 3.5 -Python 3.3 ___ Python tracker

[issue20917] Idle: Enhance font change notification system

2014-03-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Changing CodeContext.py to drop the font polling and use the new mechanism is part of this issue. Such a change would effectively be part of its test. -- ___ Python tracker __

[issue12259] Document which compilers can be created on which platform

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Distutils -Distutils2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12259] Document which compilers can be created on which platform

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: tarek -> stage: -> needs patch title: Test and document which compilers can be created on which platform -> Document which compilers can be created on which platform versions: +Python 2.7, Python 3.4 ___ Python

[issue11993] Use sub-second resolution to determine if a file is newer

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> out of date stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue7546] msvc9compiler.py: add .asm extension

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: tarek -> components: +Distutils -Distutils2 versions: +Python 3.5 -3rd party ___ Python tracker ___

[issue10510] distutils upload/register should use CRLF in HTTP requests

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Distutils -Distutils2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1887] Document that distutils doesn't support out-of-source builds

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: distutils2 is no more. Paths handling in distutils is fragile, so I’m changing this to a doc issue: we should make it clear that only “cd path/to/project; python setup.py command” is expected to work. -- assignee: tarek -> eric.araujo components: +Distut

[issue1887] Document that distutils doesn't support out-of-source builds

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- keywords: +easy -patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue5300] distutils should preserve +x bit on data files

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: tarek -> components: +Distutils -Distutils2 title: distutils ignores file permissions -> distutils should preserve +x bit on data files versions: +Python 2.7, Python 3.3, Python 3.4 -3rd party ___ Python tracker

[issue11723] Add support for mingw64 compiler

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: “MinGW 64 is an open source C/C++ compiler based on the popular gcc; basically, it is intended to generate executables for Windows 64 bit.” If there is significant interest from the community for that compiler, support could be added to 3.5. Alternatively, a way

[issue11060] distutils2 sdist does not complain about version that is not PEP 386 compliant

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: distutils2 development has stopped. -- resolution: -> out of date stage: test needed -> committed/rejected status: open -> closed ___ Python tracker _

[issue12355] Crawler doesn't follow redirection

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> out of date stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue7677] upload: improve display for error messages from gpg

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: Improving error messages is an acceptable change for stable branches IMO. -- components: +Distutils -Distutils2 versions: +Python 2.7, Python 3.4 -3rd party ___ Python tracker

[issue20916] ssl.enum_certificates() will not return all certificates trusted by Windows

2014-03-13 Thread Christian Heimes
Christian Heimes added the comment: Thanks for you tests! Yes, I was aware of the situation in general. Personally I think it is an unfortunate decision of Microsoft to download root CA certs on demand. When I developed the feature I only experimented with a fresh but fully patched VM of Wind

[issue5926] bdist_msi: add support for minimum Python version for pure Python projects

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> out of date stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___

[issue12659] Add tests for packaging.tests.support

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> out of date stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue3621] it would be nice if installers made by bdist_wininst stored an EstimatedSize property in the Windows registry

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: Closing per OP’s message. -- components: +Distutils -Distutils2 nosy: +eric.araujo resolution: -> rejected stage: -> committed/rejected status: open -> closed versions: -3rd party ___ Python tracker

[issue6142] distutils2 clean command: Remove extension modules built in-place

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 67ada6ab7fe2 by Éric Araujo in branch '2.7': Clarify distutils’ clean command (ref #6142) http://hg.python.org/cpython/rev/67ada6ab7fe2 -- nosy: +python-dev ___ Python tracker

[issue5187] distutils upload should prompt for the user/password too

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: Freeze was lifted. The user experience for register/upload isn’t as good as it could be, I think we could improve it. -- assignee: tarek -> components: +Distutils -Distutils2 versions: +Python 2.7, Python 3.3, Python 3.4 -3rd party _

[issue20918] LogRecord.__init__ should handle exception if % operation fails

2014-03-13 Thread the mulhern
New submission from the mulhern: Here's my illustrating trace: Python 3.3.2 (default, Aug 23 2013, 19:00:04) [GCC 4.8.1 20130603 (Red Hat 4.8.1-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> class Junk(): ... def __repr__(self): ... raise

[issue1682403] Transform reST to styled text in bdist_wininst-produced installers

2014-03-13 Thread Éric Araujo
Éric Araujo added the comment: The marked-up text is still readable, and PyPI / project’s documentation render nice HTML. If someone knows how to style text in a wininst program and wants to work on a patch, please reopen this ticket. -- components: +Distutils -Distutils2 resolution:

  1   2   3   >