[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-10 Thread Ronald Oussoren
Ronald Oussoren added the comment: What other problems? Do you have more information on that? -- ___ Python tracker ___ ___ Python-bug

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2013-02-10 Thread Stefan Behnel
Stefan Behnel added the comment: 1) that's a regex test, so it just looks for the text. I only extended it to include the object it's supposed to test for. It's not actually related to my changes, but I considered it the right thing to do. I used "42.*is not" in order to allow for alternative

[issue4591] 32-bits unsigned user/group identifier

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: > > (perhaps we need as PyNumber_AsLongIndex() to do the direct conversion > > to a C long, it would make things easier in many cases) > > +1, but drop the 'Index' part of the name, to match the existing > PyNumber_AsSsize_t. There's already PyNumber_Long() (wh

[issue4591] 32-bits unsigned user/group identifier

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: > (perhaps we need as PyNumber_AsLongIndex() to do the direct conversion > to a C long, it would make things easier in many cases) +1, but drop the 'Index' part of the name, to match the existing PyNumber_AsSsize_t. --

[issue17158] help() module searcher text improvement

2013-02-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue17158] help() module searcher text improvement

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4f84fe5a997b by Terry Jan Reedy in branch 'default': Closes #17158: Add 'symbols' to help() welcome message; clarify 'modules spam' http://hg.python.org/cpython/rev/4f84fe5a997b -- nosy: +python-dev resolution: -> fixed stage: patch review

[issue16997] subtests

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: > It seems like the last patch (subtests5.patch) dropped the parameter > data from the failure output as described in the docs. For example, > the example in the docs yields the following: > > FAIL: test_even (__main__.NumbersTest) Weird, since there are u

[issue17158] help() module searcher text improvement

2013-02-10 Thread Senthil Kumaran
Senthil Kumaran added the comment: The patch looks good to me. This change is helpful and definitely an improvement over the existing text. Please go ahead with committing it, Terry. Thanks. -- ___ Python tracker

[issue17178] In all.__doc__ and any.__doc__ need to clarify the behaviour with an empty iterable like in documentation

2013-02-10 Thread py.user
New submission from py.user: >>> help(all) " all(...) all(iterable) -> bool Return True if bool(x) is True for all values x in the iterable. " >>> all([]) True >>> bool() False >>> -- assignee: docs@python components: Documentation messages: 181873 nosy: docs@python, py.us

[issue17052] unittest discovery should use self.testLoader

2013-02-10 Thread Chris Jerdonek
Chris Jerdonek added the comment: +- Issue #17502: unittest discovery should use self.testLoader. Also, this should read Issue #17052. -- ___ Python tracker ___

[issue16997] subtests

2013-02-10 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue16997] subtests

2013-02-10 Thread Chris Jerdonek
Chris Jerdonek added the comment: It seems like the last patch (subtests5.patch) dropped the parameter data from the failure output as described in the docs. For example, the example in the docs yields the following: FAIL: test_even (__main__.NumbersTest) instead of the documented:

[issue17111] test_surrogates of test_fileio fails sometimes on OS X 10.4

2013-02-10 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file28937/issue_X_test_fileio.patch ___ Python tracker ___ ___ Python-bugs-lis

[issue17111] test_surrogates of test_fileio fails sometimes on OS X 10.4

2013-02-10 Thread Ned Deily
Ned Deily added the comment: After writing the simplest possible test of open(2) in C to eliminate anything in Python, I finally established that the seemingly random behavior of the test is in fact caused by a rather odd bug in OS X 10.4. The filename being used in the test is intended to be

[issue17158] help() module searcher text improvement

2013-02-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: Looking further at the pydoc code, I see that "Here is a list. Enter any listed item to get more help", with both sentences printed before the list, is normal. Having a post-list prompt for the list of all modules is the exception. So I would no longer make th

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2013-02-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am puzzled by this part of the patch: - with self.assertRaisesRegex(TypeError, 'is not a callable object'): + with self.assertRaisesRegex(TypeError, '42.*is not a callable object'): With 3.3, I get "TypeError: 42 is not a callable object", which I consider c

[issue17052] unittest discovery should use self.testLoader

2013-02-10 Thread Chris Jerdonek
Chris Jerdonek added the comment: Michael, was this implemented correctly? Loader should be a callable (e.g. a class), but self.testLoader is an instance (it defaults to loader.defaultTestLoader, which equals loader.TestLoader()): http://hg.python.org/cpython/file/b53b029895df/Lib/unittest/lo

[issue16997] subtests

2013-02-10 Thread Chris Jerdonek
Chris Jerdonek added the comment: I'm still opposed to exposing these features only together. Annotating the failure message with parametrization data is useful in its own right, but what if there are 500 subtests in a loop and you don't want 500 failures to be registered for that test case?

[issue12641] Remove -mno-cygwin from distutils

2013-02-10 Thread Matthias Klose
Matthias Klose added the comment: 2.7, 3.3 and 3.4 now have AC_CANONICAL_HOST. So the correct compiler should be picked up. please could somebody validate this? or are explicit --host and --build options required for configure? -- nosy: +doko ___ P

[issue17052] unittest discovery should use self.testLoader

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset b53b029895df by Michael Foord in branch 'default': Merge. Closes issue 17052. http://hg.python.org/cpython/rev/b53b029895df -- nosy: +python-dev resolution: -> fixed stage: test needed -> committed/rejected status: open -> closed _

[issue16935] unittest should understand SkipTest at import time during test discovery

2013-02-10 Thread Michael Foord
Michael Foord added the comment: The patch looks good - can you add a test and documentation for this? -- ___ Python tracker ___ ___ P

[issue6696] Profile objects should be documented

2013-02-10 Thread Tom Pinckney
Tom Pinckney added the comment: Draft of new updates based on Eric's feedback. I haven't done a final proof-reading over this patch as I wanted to upload it and see if I'm heading in the right direction first. -- Added file: http://bugs.python.org/file29036/patch2.diff ___

[issue4591] 32-bits unsigned user/group identifier

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Not technically the topic of this issue, but should we just lock > down _Py_Uid_Converter() to ints? The right way to do it should be to use PyNumber_Index(). (perhaps we need as PyNumber_AsLongIndex() to do the direct conversion to a C long, it would make th

[issue4591] 32-bits unsigned user/group identifier

2013-02-10 Thread Stefan Krah
Stefan Krah added the comment: Not technically the topic of this issue, but should we just lock down _Py_Uid_Converter() to ints? This is still accepted: os.setuid(Decimal("1000.2")) -- nosy: +skrah ___ Python tracker

[issue7897] Support parametrized tests in unittest

2013-02-10 Thread Michael Foord
Michael Foord added the comment: Looks like we're going to get subtests ( issue #16997 ) instead of parameterized tests. -- ___ Python tracker ___ ___

[issue1778410] removeTest() method patch for unittest.TestSuite

2013-02-10 Thread Michael Foord
Michael Foord added the comment: I think better filtering at the collection phase - collecting tests by name or filtering out tests by name - could obviate the need for this. -- ___ Python tracker __

[issue1778410] removeTest() method patch for unittest.TestSuite

2013-02-10 Thread Michael Foord
Michael Foord added the comment: I'm pretty sure the proposed patch doesn't work - but there's no test for it so I can't be sure. I can't think of a better basic strategy, but the strategy here is horrible. This means I'm sympathetic to the desire for a removeTest method but not very enthusias

[issue4591] 32-bits unsigned user/group identifier

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4ef048f4834e by Serhiy Storchaka in branch '3.3': Reject float as uid or gid. http://hg.python.org/cpython/rev/4ef048f4834e New changeset 3fdcffdfd3e6 by Serhiy Storchaka in branch 'default': Reject float as uid or gid. http://hg.python.org/cpython/

[issue9253] argparse: optional subparsers

2013-02-10 Thread mike bayer
mike bayer added the comment: um, this seems like a regression/bug? I now have users complaining that my apps are broken because of this change as of Python 3.3.My application is supposed to return the "help" screen when no command is given. Now I get a None error because argparse is no

[issue17072] Decimal, quantize, round and negative value

2013-02-10 Thread Hakim Taklanti
Hakim Taklanti added the comment: You is right. I had just see the beginning of documentation ("Rounding options include..."). Sorry for the bother and thanks for the answer. -- ___ Python tracker

[issue16880] Importing "imp" will fail if dynamic loading not supported

2013-02-10 Thread Brett Cannon
Brett Cannon added the comment: A commit to Python 3.3 and 3.4 would be enough to close this bug. Just a matter of Christian or someone else finding the time. -- ___ Python tracker

[issue4591] 32-bits unsigned user/group identifier

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Looks like this broke some buildbots: == ERROR: test_chown (test.test_shutil.TestShutil) -- Traceback (most recent call last)

[issue16880] Importing "imp" will fail if dynamic loading not supported

2013-02-10 Thread Jeffrey Armstrong
Jeffrey Armstrong added the comment: Sorry, I think my question was a bit vague. Christian's patch does, in fact, work fine for fixing the problem as reported. I was wondering if the patch was sufficient to close the bug with a commit. I didn't know if other work was ongoing to close this i

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-10 Thread Senthil Kumaran
Senthil Kumaran added the comment: It should be noted that latest OSX Mountain Lion has caused problems for other language libraries too (specifically ruby, which I use at work). Ease the support of correct openssl in OSX may help a long way in all versions of python. -- nosy: +orsenth

[issue17177] Document/deprecate imp

2013-02-10 Thread Brett Cannon
New submission from Brett Cannon: I need a make a decision as to what (if anything) belongs in imp and then document what stays and deprecate everything else. Everything in imp falls into one of the following categories: * From importlib - get_magic() - source_from_cache() - cache_from_s

[issue17086] backport cross-build patches to the 2.7 branch

2013-02-10 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: http://hg.python.org/cpython/rev/8ee6d96a1019#l5.150 You changed PYTHONPATH, but all other branches (e.g. 3.3 and default) set previous value (PYTHONPATH="`pwd`/Lib"). Was it an accidental change? -- nosy: +Arfrever status: pending

[issue4591] 32-bits unsigned user/group identifier

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset b322655a4a88 by Serhiy Storchaka in branch '3.3': Issue #4591: Uid and gid values larger than 2**31 are supported now. http://hg.python.org/cpython/rev/b322655a4a88 New changeset 94256de0aff0 by Serhiy Storchaka in branch 'default': Issue #4591: Uid

[issue17176] Document imp.NullImporter is NOT used anymore by import

2013-02-10 Thread Brett Cannon
New submission from Brett Cannon: imp.NullImporter should not be claiming that it is still used to fill sys.path_importer_cache on misses. -- assignee: brett.cannon components: Documentation messages: 181846 nosy: brett.cannon priority: normal severity: normal stage: needs patch status:

[issue16880] Importing "imp" will fail if dynamic loading not supported

2013-02-10 Thread Brett Cannon
Brett Cannon added the comment: Yes, Christian's patch should do the trick for fixing the problem you reported, Jeffrey. -- ___ Python tracker ___ __

[issue17158] help() module searcher text improvement

2013-02-10 Thread Senthil Kumaran
Senthil Kumaran added the comment: You will stumble on that message, only if you give help("module ") and note that could be any module in the PYTHONPATH. We can change to show the text only if the module is a valid module, but I think, it is costly do that computation for help text. A better ap

[issue17167] python man page contains $Date$ in page footer

2013-02-10 Thread Ned Deily
Ned Deily added the comment: The keyword extension would have to be added by everyone to their existing .hgrc files and the Mercurial developers discourage its use ("This is considered a feature of last resort."). Better to eliminate the keyword in the source. There were others that have alr

[issue17164] MozillaCookieJar does not handle session cookies

2013-02-10 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue17167] python man page contains $Date$ in page footer

2013-02-10 Thread Senthil Kumaran
Senthil Kumaran added the comment: There is another option. To have the same behavior like svn keywords through hg. Having this setting at server hgrc can help. This will be useful if we have more than one instance of keyword expansion. [extensions] keyword= [keyword] **/*.man = [keywordmaps]

[issue10852] SSL/TLS sni use in smtp, pop, imap, nntp, ftp client libs by default

2013-02-10 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue16445] SEGFAULT when deleting Exception.message

2013-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Here's a simple patch (against 2.7) for this particular issue. LGTM. -- ___ Python tracker ___

[issue16445] SEGFAULT when deleting Exception.message

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: Here's a simple patch (against 2.7) for this particular issue. -- Added file: http://bugs.python.org/file29035/issue16445.patch ___ Python tracker _

[issue16447] SEGFAULT when setting type.__name__

2013-02-10 Thread Mark Dickinson
Changes by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue16445] SEGFAULT when deleting Exception.message

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: Can I suggest fixing this particular issue with a dedicated patch, and opening another issue to consider the large automated replacements that Victor's proposing? -- ___ Python tracker

[issue832159] Bad value for Mingw32Compiler.compiler_cxx

2013-02-10 Thread Roumen Petrov
Roumen Petrov added the comment: Uhh "python setup.py build_ext -cmingw32 --swig-opts=-c++ -f" -- ___ Python tracker ___ ___ Python-b

[issue832159] Bad value for Mingw32Compiler.compiler_cxx

2013-02-10 Thread Roumen Petrov
Roumen Petrov added the comment: In scope of issue12641 (Remove -mno-cygwin from distutils) I just publish a set of patches to modernize support for cygwin&mingw compilers. My tests show that swig could be used successfully with patched mingw compiler. Test is based on patched official release

[issue17094] sys._current_frames() reports too many/wrong stack frames

2013-02-10 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +neologix, pitrou versions: +Python 3.2, Python 3.3, Python 3.4 ___ Python tracker ___ ___ Python

[issue15438] document that math.pow is inappropriate for integers

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: Whoops. Removing a bonus non-grammatical 'function'. -- Added file: http://bugs.python.org/file29034/issue15438_3.patch ___ Python tracker ___

[issue15438] document that math.pow is inappropriate for integers

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: Updated patch. Thanks Ezio and David for reviewing. -- assignee: -> mark.dickinson priority: low -> normal Added file: http://bugs.python.org/file29033/issue15438_2.patch ___ Python tracker

[issue12641] Remove -mno-cygwin from distutils

2013-02-10 Thread Roumen Petrov
Roumen Petrov added the comment: And optionally If someone disagree options m{no-}cygwin to be removed I would like to propose a patch '..check if cygwin/mingw... -m{no-}cygwin' to restore it for GCC before 4.6x. -- Added file: http://bugs.python.org/file29032/0001-MINGW-issue12641-c

[issue17165] Use "except ImportError" instead of bare except in _strptime.py

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Fixed, thank you! -- nosy: +pitrou resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue17165] Use "except ImportError" instead of bare except in _strptime.py

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1557d25b0f6e by Antoine Pitrou in branch 'default': Issue #17165: fix a bare import in _strptime.py. http://hg.python.org/cpython/rev/1557d25b0f6e -- nosy: +python-dev ___ Python tracker

[issue17175] update PEP 430

2013-02-10 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +georg.brandl, ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue12641] Remove -mno-cygwin from distutils

2013-02-10 Thread Roumen Petrov
Roumen Petrov added the comment: Next step is to propose customization for cygwin&mingw compilers. -- keywords: +patch Added file: http://bugs.python.org/file29031/0001-MINGW-issue12641-customize-mingw-cygwin-compilers.patch ___ Python tracker

[issue12641] Remove -mno-cygwin from distutils

2013-02-10 Thread Roumen Petrov
Roumen Petrov added the comment: In scope of this issue I would like to propose following patch set. First step is remove checks for versions used in past millenium, i.e. to avoid checks for 15 year old binaries. -- Added file: http://bugs.python.org/file29030/issue12641-modernize_cygw

[issue17072] Decimal, quantize, round and negative value

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: It's not obvious to me how the documentation could be made clearer: all the rounding modes are described at http://docs.python.org/2/library/decimal.html#decimal.Context for the Python 2 docs, and in a separate section entitled 'Rounding modes' for the Pytho

[issue6331] Add unicode script info to the unicode database

2013-02-10 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +benjamin.peterson, haypo, lemburg, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue16245] Update html.entities.html5 dictionary and parseentities.py

2013-02-10 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- versions: -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue14914] pysetup installed distribute despite dry run option being specified

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Should this remain open? -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue17073] Integer overflow in sqlite module

2013-02-10 Thread Mark Dickinson
Changes by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue4945] json checks True/False by identity, not boolean value

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: According to the experts index, Bob is no longer actively maintaining the module. -- assignee: bob.ippolito -> ___ Python tracker ___ _

[issue17130] Add runcall() function to profile.py and cProfile.py

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: +1 for runcall() and the context manager. -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-li

[issue10557] Malformed error message from float()

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: Closing. -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue4591] 32-bits unsigned user/group identifier

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: No objections here. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue8865] select.poll is not thread safe

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Patches look good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue8865] select.poll is not thread safe

2013-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ping. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue17141] random.vonmisesvariate() hangs for large kappa

2013-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks for review. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue17141] random.vonmisesvariate() hangs for large kappa

2013-02-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue17141] random.vonmisesvariate() hangs for large kappa

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0f9113e1b541 by Serhiy Storchaka in branch '2.7': Issue #17141: random.vonmisesvariate() no more hangs for large kappas. http://hg.python.org/cpython/rev/0f9113e1b541 New changeset d94b73c95646 by Serhiy Storchaka in branch '3.2': Issue #17141: rand

[issue17141] random.vonmisesvariate() hangs for large kappa

2013-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > The variance in the second case should be close to 1/100.0 rather than > 1/sqrt(2)/100.0, right? Yes, but experiments exposed precisely 1/sqrt(2)/100.0 and I were confused by this fact. But now I noticed a comment at the top of the test: "Only works for d

[issue12983] byte string literals with invalid hex escape codes raise ValueError instead of SyntaxError

2013-02-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue17141] random.vonmisesvariate() hangs for large kappa

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: I don't think the second added test_avg_std test makes sense, given that the number of random samples used by vonmisesvariate is unpredictable. The variance in the second case should be close to 1/100.0 rather than 1/sqrt(2)/100.0, right? If this code stays,

[issue16997] subtests

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch implementing Michael's and lifeless' proposed strategy. -- Added file: http://bugs.python.org/file29029/subtests5.patch ___ Python tracker _

[issue9815] assertRaises as a context manager keeps tracebacks and frames alive

2013-02-10 Thread Michael Foord
Michael Foord added the comment: The patch py3k_fix__AssertRaisesContext.patch looks good. A test would be nice. The code already attempts to sanitize the traceback, so sanitizing __cause__ and __context__ seems reasonable. -- versions: +Python 3.3, Python 3.4

[issue12983] byte string literals with invalid hex escape codes raise ValueError instead of SyntaxError

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 305210a08fc9 by Serhiy Storchaka in branch '3.2': Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError http://hg.python.org/cpython/rev/305210a08fc9 New changeset d5b731446a91 by Serhiy Storchaka in branch '3.3': Issue #12983:

[issue16997] subtests

2013-02-10 Thread R. David Murray
R. David Murray added the comment: I don't really have strong feelings about this, but I will just note as a data point that I implemented parameterized tests for the email package, and have no interest myself in subtests. This is for exactly the collection time vs runtime reason that Michael

[issue1470548] Bugfix for #1470540 (XMLGenerator cannot output UTF-16)

2013-02-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue16880] Importing "imp" will fail if dynamic loading not supported

2013-02-10 Thread Jeffrey Armstrong
Jeffrey Armstrong added the comment: Is Christian's patch going to be sufficient for the time being? Just curious. -- ___ Python tracker ___

[issue6975] symlinks incorrectly resolved on POSIX platforms

2013-02-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue12983] byte string literals with invalid hex escape codes raise ValueError instead of SyntaxError

2013-02-10 Thread Benjamin Peterson
Benjamin Peterson added the comment: LGTM -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue16997] subtests

2013-02-10 Thread Michael Foord
Michael Foord added the comment: And on the "superior implementation strategy", both nose and py.test used to have runtime test generation and both have deprecated them and moved to collection time parameterization. (But I guess we know better.) You don't need PEP 422 for parameterization. The

[issue17141] random.vonmisesvariate() hangs for large kappa

2013-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Serhiy: do you know how the original formulas arose? No. I have not found any articles or books in the open access. > A test would be good! I was waiting for issue13355 and issue17149. Here is an updated patch with tests. -- Added file: http://b

[issue16967] Keyword only argument default values are evaluated before other defaults

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6917402c6191 by Benjamin Peterson in branch 'default': evaluate lambda keyword-only defaults after positional defaults (#16967 again) http://hg.python.org/cpython/rev/6917402c6191 -- ___ Python tracker <

[issue16967] Keyword only argument default values are evaluated before other defaults

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset d296cf1600a8 by Benjamin Peterson in branch 'default': evaluate positional defaults before keyword-only defaults (closes #16967) http://hg.python.org/cpython/rev/d296cf1600a8 -- nosy: +python-dev resolution: -> fixed stage: -> committed/re

[issue16967] Keyword only argument default values are evaluated before other defaults

2013-02-10 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- assignee: -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list

[issue17149] random.vonmisesvariate() results range is inconsistent for small and not small kappa

2013-02-10 Thread Mark Dickinson
Changes by Mark Dickinson : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue17149] random.vonmisesvariate() results range is inconsistent for small and not small kappa

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6a3d18cede49 by Mark Dickinson in branch '2.7': Issue #17149: Fix random.vonmisesvariate to always return results in [0, 2*math.pi]. http://hg.python.org/cpython/rev/6a3d18cede49 New changeset 41e97652a9f9 by Mark Dickinson in branch '3.2': Issue #

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: I certainly think the patch is ok on the principle. I'll let someone else pronounce on the details :-) -- nosy: +pitrou ___ Python tracker ___

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2013-02-10 Thread Stefan Behnel
Stefan Behnel added the comment: Any more comments? Any objections to applying the last patch? Anyone ready to do it? -- ___ Python tracker ___ _

[issue10852] SSL/TLS sni use in smtp, pop, imap, nntp, ftp client libs by default

2013-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: I'm getting a test failure in test_ftplib: == ERROR: test_data_connection (test.test_ftplib.TestTLS_FTPClass) -- Traceback (mo

[issue17149] random.vonmisesvariate() results range is inconsistent for small and not small kappa

2013-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue17149] random.vonmisesvariate() results range is inconsistent for small and not small kappa

2013-02-10 Thread Mark Dickinson
Changes by Mark Dickinson : Added file: http://bugs.python.org/file29027/issue17149_v2.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue17149] random.vonmisesvariate() results range is inconsistent for small and not small kappa

2013-02-10 Thread Mark Dickinson
Mark Dickinson added the comment: Updated patch (thanks Serhiy for reviewing). -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue13773] Support sqlite3 uri filenames

2013-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh, I were blind. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue16997] subtests

2013-02-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16997] subtests

2013-02-10 Thread Michael Foord
Michael Foord added the comment: My concern is that this re-uses the existing TestResult.add* methods in a different way (including calling addError multiple times). This can break existing tools. Fix suggested by lifeless on IRC. A sub test failure / success / exception calls the following T

  1   2   >