[issue26386] tkinter - Treeview - .selection_add and selection_toggle

2019-02-24 Thread Ned Deily
Ned Deily added the comment: New changeset 72ff2f7554e550762acaad805a8a0d456a29468a by Ned Deily in branch '2.7': bpo-26386: Re-enable missing widget testcases in test_ttk_guionly. (GH-12014) https://github.com/python/cpython/commit/72ff2f7554e550762acaad805a8a0d456a29468a -- nosy:

[issue36099] Clarify the difference between mu and xbar in the statistics documentation

2019-02-24 Thread Steven D'Aprano
Steven D'Aprano added the comment: I'm happy with that doc change. If nobody objects, this might make an easy "Good first issue" for the upcoming sprint. Assigning to Cheryl to stop anyone else grabbing it. -- assignee: docs@python -> cheryl.sabella nosy: +cheryl.sabella ___

[issue26386] tkinter - Treeview - .selection_add and selection_toggle

2019-02-24 Thread Ned Deily
Ned Deily added the comment: It looks like some testing code was inadvertently committed in the 2.7 branch fix causing only the Treeview testcases to be executed when test_ttk_gui_only is run. (I noticed this because a testcase was failing on other branches but not 2.7 although the tests are

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2019-02-24 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +12046 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2019-02-24 Thread Ned Deily
Ned Deily added the comment: New changeset b5213f4def07107952ce422ecc9d8508f4f084b4 by Ned Deily in branch '2.7': [2.7] bpo-27313: Avoid test_ttk_guionly ComboboxTest fail with macOS Cocoa Tk (GH-12015) https://github.com/python/cpython/commit/b5213f4def07107952ce422ecc9d8508f4f084b4 -

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2019-02-24 Thread Ned Deily
Ned Deily added the comment: macOS Cocoa Tk returns an identity of 'Combobox.button' for the created Combobox widget at the tested location whereas the X-based Tk's (including the macOS X version) returns 'textarea'. Rather than try to further modify the test code, I just modified the test

[issue21359] IDLE Redo command accelerator acts as Undo with current OS X Cocoa Tk 8.5.15

2019-02-24 Thread Ned Deily
Change by Ned Deily : -- assignee: ned.deily -> versions: +Python 2.7, Python 3.8 -Python 3.6 ___ Python tracker ___ ___ Python-bug

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Marcos Dione
New submission from Marcos Dione : Following https://blog.lerner.co.il/pythons-str-isdigit-vs-str-isnumeric/, we have this: Python 3.8.0a1+ (heads/master:001fee14e0, Feb 20 2019, 08:28:02) [GCC 8.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> '一二三四五'.is

[issue35648] Add use_srcentry parameter to shutil.copytree()

2019-02-24 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: When user uses copy_function argument, the callback function should always receive path strings, both for consistency and for not breaking backward compatibility. This line: use_srcentry = copy_function is copy2 or copy_function is copy ...makes sure

[issue33671] Efficient zero-copy for shutil.copy* functions (Linux, OSX and Win)

2019-02-24 Thread Giampaolo Rodola'
Change by Giampaolo Rodola' : -- pull_requests: +12047 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue33671] Efficient zero-copy for shutil.copy* functions (Linux, OSX and Win)

2019-02-24 Thread Giampaolo Rodola'
Change by Giampaolo Rodola' : -- pull_requests: -7528 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue33671] Efficient zero-copy for shutil.copy* functions (Linux, OSX and Win)

2019-02-24 Thread Giampaolo Rodola'
Change by Giampaolo Rodola' : -- pull_requests: -7536 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue33671] Efficient zero-copy for shutil.copy* functions (Linux, OSX and Win)

2019-02-24 Thread Giampaolo Rodola'
Change by Giampaolo Rodola' : -- pull_requests: -7529 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Steven D'Aprano
Steven D'Aprano added the comment: I think that analysis is wrong. The Wikipedia page describes the meaning of the Unicode Decimal/Digit/Numeric properties: https://en.wikipedia.org/wiki/Unicode_character_property#Numeric_values_and_types and the characters you show aren't appropriate for con

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Mark Dickinson
Mark Dickinson added the comment: [Steven posted his answer while I was composing mine; posting mine anyway ...] I don't think this would make sense. There are lots of characters that can't be interpreted as a decimal digit but for which `isnumeric` nevertheless gives True. >>> s = "㉓⅗⒘Ⅻ" >>

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Mark Dickinson
Mark Dickinson added the comment: > What value would you expect `int(s)` to have in this situation? Actually, I guess that question was too easy. The value for `int(s)` should *obviously* be 23 * 1000 + (3/5) * 100 + 17 * 10 + 12 = 23242. I should have used ⅐ instead of ⅗. Anyway, agreed wit

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Not a unicode expert but searching along the lines there was a note added on issue10610 that int() is supported for characters of 'Nd' category. So to check if a string can be converted to integer with help of int() I should be using str.isdecimal()

[issue36095] Better NaN sorting.

2019-02-24 Thread Mark Dickinson
Mark Dickinson added the comment: Agreed with Raymond and Tim here that the sorting functionality itself shouldn't be special-cased for nans. [Tim] > So people who go down this path can't get two steps before making a fork in > the road ;-) Well, both those solutions are wrong. *Clearly*, n

[issue36080] Ensurepip fails to install pip into a nested virtual environment (on Windows)

2019-02-24 Thread Eryk Sun
Change by Eryk Sun : -- superseder: -> Creating venv from venv no longer works in 3.7.2 ___ Python tracker ___ ___ Python-bugs-list

[issue35431] Add a function for computing binomial coefficients to the math module

2019-02-24 Thread Mark Dickinson
Mark Dickinson added the comment: > Can I get a consensus on weather math.perm() is needed? It's not, for the purposes of this issue. I think `math.perm` should be the subject of a separate issue and discussion, and a separate PR. That way it doesn't block completion of this issue.

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Mark Dickinson
Mark Dickinson added the comment: > So to check if a string can be converted to integer with help of int() I > should be using str.isdecimal() instead of str.isnumeric() ? Yes, I think that's correct. The characters matched by `str.isdecimal` are a subset of those matched by `str.isdigit`, w

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Mark Dickinson
Mark Dickinson added the comment: > which corresponds to `str.isdigit`. Gah! That should have said: > which corresponds to `str.isdecimal`. Sorry. -- ___ Python tracker ___

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: > `int` and `float` required general category Nd, which corresponds to > `str.isdigit`. Sorry, did you mean str.isdecimal? since there could be a subset where isdigit is True and isdecimal returns False. >>> '\u00B2'.isdecimal() False >>> '\u00B2'

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Steven D'Aprano
Steven D'Aprano added the comment: On Sun, Feb 24, 2019 at 11:07:41AM +, Karthikeyan Singaravelan wrote: > Is this worth an FAQ or an addition to the existing note on int that > specifies characters should belong to 'Nd' category to add a note that > str.isdecimal should return True Yes

[issue36099] Clarify the difference between mu and xbar in the statistics documentation

2019-02-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: Great! Thank you, Steven. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue36083] Misformated manpage: --check-hash-based-pycs ´default´|´always´|´never´

2019-02-24 Thread Miro Hrončok
Change by Miro Hrončok : -- keywords: +patch pull_requests: +12048 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Agreed, though str.isnumeric behavior might seem to be correct in terms of user who knows unicode internals the naming makes it easy to be used for a general user on trying to determine if the string can be used for int() without knowing unicode in

[issue36029] Use title-case HTTP header fields

2019-02-24 Thread Géry
Géry added the comment: Please see the changes and my reply in the PR. -- title: Use consistent case for HTTP header fields -> Use title-case HTTP header fields ___ Python tracker ___

[issue36100] int() and float() should accept any isnumeric() digit

2019-02-24 Thread Marcos Dione
Marcos Dione added the comment: Thanks for all the examples, I'm convinced. -- resolution: -> not a bug stage: -> resolved status: open -> closed versions: +Python 3.4, Python 3.5, Python 3.6 ___ Python tracker

[issue36100] Document the differences between str.isdigit, isdecimal and isnumeric

2019-02-24 Thread Steven D'Aprano
Steven D'Aprano added the comment: I'm re-opening the ticket with a change of subject, because I think this should be treated as a documentation enhancement: - improve the docstrings for str.isdigit, isnumeric and isdecimal to make it clear what each does (e.g. what counts as a digit); - si

[issue36101] remove non-ascii characters in docstring

2019-02-24 Thread Ma Lin
New submission from Ma Lin : replace ’(\u2019) with '(\x27) -- assignee: docs@python components: Documentation messages: 336468 nosy: Ma Lin, docs@python priority: normal severity: normal status: open title: remove non-ascii characters in docstring versions: Python 3.7, Python 3.8 _

[issue36101] remove non-ascii characters in docstring

2019-02-24 Thread Ma Lin
Change by Ma Lin : -- keywords: +patch pull_requests: +12049 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mai

[issue36101] remove non-ascii characters in docstring

2019-02-24 Thread Ma Lin
Ma Lin added the comment: only 3.8 branch has those non-ascii characters. -- versions: -Python 3.7 ___ Python tracker ___ ___ Pyth

[issue23460] Decimals do not obey ':g' exponential notation formatting rules

2019-02-24 Thread Stefan Krah
Stefan Krah added the comment: I just noticed that there are other differences, for example the "removal of trailing zeros" passage does not apply to Decimal: >>> format(Decimal("1.00e-6"), "g") '0.0100' Perhaps it would be easier to have separate docs for float and decimal after

[issue23460] Decimals do not obey ':g' exponential notation formatting rules

2019-02-24 Thread Stefan Krah
Stefan Krah added the comment: On the other hand, the docs say "insignificant trailing zeros are removed from the significand", so technically it *is* correct, because trailing zeros are significant in decimal. -- ___ Python tracker

[issue36095] Better NaN sorting.

2019-02-24 Thread Brandt Bucher
Brandt Bucher added the comment: One other idea I had considered was having a new magic method intended to be used for elementwise comparisons such as these (I’m thinking specifically of the old __cmp__/tp_compare). Sorting routines could check for this method on each element, but fall back o

[issue24643] VS 2015 pyconfig.h #define timezone _timezone conflicts with timeb.h

2019-02-24 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12050 stage: needs patch -> patch review ___ Python tracker ___ ___ Py

[issue24643] VS 2015 pyconfig.h #define timezone _timezone conflicts with timeb.h

2019-02-24 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue. -- nosy: +ZackerySpytz ___ Python tracker ___ ___ Python-bugs-li

[issue24643] VS 2015 pyconfig.h #define timezone _timezone conflicts with timeb.h

2019-02-24 Thread Paul Ganssle
Change by Paul Ganssle : -- nosy: +p-ganssle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue36090] spelling error in PEP219 introduction

2019-02-24 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I have opened an issue on the PEP repository : https://github.com/python/peps/issues/899 I will close this. -- ___ Python tracker ___ ___

[issue36090] spelling error in PEP219 introduction

2019-02-24 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue11776] Constructor signatures missing in types module documentation

2019-02-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: @mikehoy, would you be interested in converting your patch to a GitHub pull request? For others, please give Mike at least a week to respond before opening a PR with his changes. Thank you! -- nosy: +cheryl.sabella versions: +Python 3.7, Python

[issue32758] Stack overflow when parse long expression to AST

2019-02-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This seems like an easy issue that the warnings in docs for ast need to be manually backported to 2.7 since miss Islington cannot cherry pick two PRs for 2.7 in https://bugs.python.org/issue32758#msg313511 . -- nosy: +Mariatta, cheryl.sabel

[issue36090] spelling error in PEP219 introduction

2019-02-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks, @nanjekyejoannah! -- resolution: -> third party ___ Python tracker ___ ___ Python-bugs-l

[issue11776] Constructor signatures missing in types module documentation

2019-02-24 Thread Emmanuel Arias
Emmanuel Arias added the comment: > For others, please give Mike at least a week to respond before opening a PR > with his changes. Okas! -- nosy: +eamanu ___ Python tracker _

[issue11776] Constructor signatures missing in types module documentation

2019-02-24 Thread Tz a
Change by Tz a : -- nosy: +Tz a ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailm

[issue35648] Add use_srcentry parameter to shutil.copytree()

2019-02-24 Thread flokX
flokX added the comment: Okay, than this behaviour is wanted. I only thought that the user should have more control about it, but you are right, only the path string is better to handle. I will close the PR. -- pull_requests: +12051 resolution: -> not a bug status: open -> closed __

[issue33529] [security] Infinite loop on folding email (_fold_as_ew()) if an header has no spaces

2019-02-24 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +12052 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue35512] patch.dict resolves in_dict eagerly (should be late resolved)

2019-02-24 Thread Chris Withers
Chris Withers added the comment: New changeset a875ea58b29fbf510f9790ae1653eeaa47dc0de8 by Chris Withers (Xtreak) in branch 'master': bpo-35512: Resolve string target to patch.dict decorator during function call GH#12000 https://github.com/python/cpython/commit/a875ea58b29fbf510f9790ae1653ee

[issue35512] patch.dict resolves in_dict eagerly (should be late resolved)

2019-02-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +12053 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36018] Add a Normal Distribution class to the statistics module

2019-02-24 Thread Raymond Hettinger
Change by Raymond Hettinger : -- pull_requests: +12054 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue36018] Add a Normal Distribution class to the statistics module

2019-02-24 Thread miss-islington
miss-islington added the comment: New changeset 9e456bc70e7bc9ee9726d356d7167457e585fd4c by Miss Islington (bot) (Raymond Hettinger) in branch 'master': bpo-36018: Add properties for mean and stdev (GH-12022) https://github.com/python/cpython/commit/9e456bc70e7bc9ee9726d356d7167457e585fd4c

[issue23205] Unit test needed for IDLE's GrepDialog.py's findfiles()

2019-02-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: Sure, thanks. grep was on list to add tests to, so I'll take a look at this as well. Thanks! -- assignee: -> cheryl.sabella ___ Python tracker __

[issue23216] IDLE grep/find/replace source code needs docstrings

2019-02-24 Thread Cheryl Sabella
Change by Cheryl Sabella : -- assignee: -> cheryl.sabella ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue29446] Improve tkinter 'import *' situation

2019-02-24 Thread Manuel Cerón
Change by Manuel Cerón : -- nosy: +ceronman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue25026] (FreeBSD/OSX) Fix fcntl module to accept 'unsigned long' type commands for ioctl(2).

2019-02-24 Thread Manuel Cerón
Change by Manuel Cerón : -- nosy: +ceronman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue18299] Change script_helper to use universal_newlines=True in _assert_python

2019-02-24 Thread Manuel Cerón
Change by Manuel Cerón : -- nosy: +ceronman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue21879] str.format() gives poor diagnostic on placeholder mismatch

2019-02-24 Thread Manuel Cerón
Change by Manuel Cerón : -- nosy: +ceronman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue36086] Split IDLE into separate feature in Windows installer

2019-02-24 Thread Jacob Bundgaard
Change by Jacob Bundgaard : -- keywords: +patch pull_requests: +12055 stage: -> patch review ___ Python tracker ___ ___ Python-bugs

[issue36086] Split IDLE into separate feature in Windows installer

2019-02-24 Thread Jacob Bundgaard
Jacob Bundgaard added the comment: I'm glad to hear that you might consider a patch. I've created a draft pull request for this, but I still need to figure out how to encode the dependency from IDLE to Tcl/Tk in WIX. Do you have any insights? -- _

[issue36018] Add a Normal Distribution class to the statistics module

2019-02-24 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue12851] ctypes: getbuffer() never provides strides

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue13248] deprecated in 3.2/3.3, should be removed in 3.5 or ???

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue20265] Bring Windows docs up to date

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue1553375] Add traceback.print_full_exception()

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue23677] Mention dict and set comps in library reference

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue17055] ftplib.ftpcp test

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue23137] Python 2.7.9 test_gdb fails on CentOS 7

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue31035] Document order of firing callbacks added with Future.add_done_callback()

2019-02-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: The docs for asyncio were rewritten in September 2018. @socketpair, please take a look at the new documentation and update this ticket if any of your requests are now explained. If not, would you be able to provide more specific suggestions of what you woul

[issue9917] resource max value represented as signed when should be unsigned

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue18161] call fchdir if subprocess.Popen(cwd=integer|fileobject)

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue20923] Explain ConfigParser 'valid section name' and .SECTCRE

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue8304] time.strftime() and Unicode characters on Windows

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue15347] IDLE - does not close if the debugger was active

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue23677] Mention dict and set comps in library reference

2019-02-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: Assigning to @Mariatta for the CPython mentored sprint. -- assignee: docs@python -> Mariatta nosy: +Mariatta, cheryl.sabella stage: patch review -> needs patch versions: +Python 3.7, Python 3.8 -Python 3.5, Python 3.6 _

[issue12790] doctest.testmod does not run tests in functools.partial functions

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue18769] argparse remove subparser

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue7897] Support parametrized tests in unittest

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue5714] http.server._url_collapse_path should live elsewhere

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue18906] Create a way to always run tests in subprocesses within regrtest

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue21506] Windows MSI installer should mklink (symlink) python.exe to python2.7.exe

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue678264] test_resource fails when file size is limited

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue1471934] Python libcrypt build problem on Solaris 8, 9, 10 and OpenSolaris

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue16473] quopri module differences in quoted-printable text with whitespace

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue17750] allow the testsuite to run in the installed location

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue7687] Bluetooth support untested

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue14534] Add means to mark unittest.TestCases as "do not load".

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue19905] Add 128-bit integer support to ctypes

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue18697] Unify arguments names in Unicode object C API documentation

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue6164] [AIX] Patch to correct the AIX C/C++ linker argument used for 'runtime_library_dirs'

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue16296] Patch to fix building on Win32/64 under VS 2010

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue993766] bdist_dumb and --relative on Windows fails

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue14534] Add means to mark unittest.TestCases as "do not load".

2019-02-24 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- nosy: +remi.lapeyre ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue22211] Remove VMS specific code in expat.h & xmlrole.h

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue3367] Uninitialized value read in parsetok.c

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue24322] Hundreds of linker warnings on Windows

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue10009] Automated MSI installation does not work

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue11352] Update cgi module doc

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue8075] Windows (Vista/7) install error when choosing to compile .py files

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue13850] Summary tables for argparse add_argument options

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

  1   2   >