[issue18319] gettext() cannot find translations with plural forms

2014-10-05 Thread Mark Lawrence
Mark Lawrence added the comment: @Martin can you comment on this please. -- nosy: +BreamoreBoy, loewis type: -> behavior versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue18348] Additional code pages for EBCDIC

2014-10-05 Thread Mark Lawrence
Mark Lawrence added the comment: What do our unicode experts think about this enhancement request? -- nosy: +BreamoreBoy versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue18

[issue12957] mmap.resize changes memory address of mmap'd region

2014-10-05 Thread Mark Lawrence
Mark Lawrence added the comment: @Michael can you provide a patch to this effect? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue12

[issue18372] _Pickler_New() doesn't call PyObject_GC_Track(self)

2014-10-05 Thread Mark Lawrence
Mark Lawrence added the comment: @Christian/Victor could either of you provide a patch for this, it's way beyond my knowledge I'm afraid. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bu

[issue18459] readline: libedit support on non-apple platforms

2014-10-05 Thread Mark Lawrence
Mark Lawrence added the comment: Just a gentle reminder. -- components: +Extension Modules nosy: +BreamoreBoy versions: +Python 2.7, Python 3.5 ___ Python tracker <http://bugs.python.org/issue18

[issue18493] make profile-opt fails with pre-existing python2.7 in path

2014-10-05 Thread Mark Lawrence
Mark Lawrence added the comment: Can somebody please take a look at the inline patch in msg193313. -- nosy: +BreamoreBoy type: -> behavior versions: +Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue18494] PyType_GenericSet/GetDict functions misnamed in docs?

2014-10-05 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone with knowledge of the C code associated with the object/type system comment on this please. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue18

[issue18372] _Pickler_New() doesn't call PyObject_GC_Track(self)

2014-10-05 Thread Mark Lawrence
Mark Lawrence added the comment: Sorry but no, when I started out on this a couple of months ago there were over 600 issues that nobody had even bothered to reply to. That number is now down to 369. I believe that around 200 issues have been closed as a result of my efforts. Do you have a

[issue19914] help([object]) returns "Not enough memory." on standard Python types, object and object functions

2013-12-10 Thread Mark Lawrence
Mark Lawrence added the comment: I can confirm that code page 65001 is the problem using 3.3.3 on Windows 7. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue19

[issue15027] Faster UTF-32 encoding

2013-12-11 Thread Mark Lawrence
Mark Lawrence added the comment: >From http://kmike.ru/python-data-structures/ under heading DATrie "Python >wrapper uses utf_32_le codec internally; this codec is currently slow and it >is the bottleneck for datrie. There is a ticket with a patch in the CPython >

[issue19980] Improve help('non-topic') response

2013-12-13 Thread Mark Lawrence
Mark Lawrence added the comment: IMHO this must be changed. >>> help('') # nothing!!! >>> help('a') Help on module a: ... I happened to have a module called a.py in the default directory. -- nosy: +BreamoreBoy ___

[issue19104] pprint produces invalid output for long strings

2013-12-15 Thread Mark Lawrence
Mark Lawrence added the comment: Would it pay to have a meta issue for all the outstanding pprint issues, or possibly make issue 7434 the meta issue? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue19

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

2013-12-18 Thread Mark Lawrence
Mark Lawrence added the comment: Well can someone at least drop the priority from high? -- ___ Python tracker <http://bugs.python.org/issue8075> ___ ___ Python-bug

[issue777588] asyncore is broken for windows if connection is refused

2013-12-18 Thread Mark Lawrence
Mark Lawrence added the comment: Is it worth leaving this open given the arrival of the new asyncio module in Python 3.4? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue777

[issue20047] bytearray partition bug

2013-12-21 Thread Mark Lawrence
New submission from Mark Lawrence: If partition is called with a single byte it works correctly but if called with the equivalent integer it returns the same bytearray with two empty arrays as follows. py> ba = bytearray(range(8)) py> ba bytearray(b'\x00\x01\x02\x03\x04\x05\x06\x07

[issue20047] bytearray partition bug

2013-12-21 Thread Mark Lawrence
Mark Lawrence added the comment: I believe that all methods should act the same, but they don't as a result of the work done in issue12170. E.g. find will accept integer input but split will not. Given this comment at the top of test_bytes.py "XXX This is a mess. Common tests

[issue18310] itertools.tee() can't accept keyword arguments

2013-12-29 Thread Mark Lawrence
Mark Lawrence added the comment: Why has this been closed? I've just run into exactly the same problem. It states here http://docs.python.org/3/library/itertools.html#itertools.tee "itertools.tee(iterable, n=2) - Return n independent iterators from a single iterable."

[issue18310] itertools.tee() can't accept keyword arguments

2013-12-29 Thread Mark Lawrence
Mark Lawrence added the comment: The docs for tee are the same going right back to its introduction in 2.4. The itertools count function takes start and step keywords, why can't tee take a keyword as it's documented to? -- ___ Pyth

[issue18310] itertools.tee() can't accept keyword arguments

2013-12-29 Thread Mark Lawrence
Mark Lawrence added the comment: It's just the docs that need changing to clarify the situation as (say) a,b,c = tee(range, 3) works perfectly. Sorry I didn't have the foresight to check this before :( -- components: +Documentation -Library (Lib) versions: +

[issue2943] Distutils should generate a better error message when the SDK is not installed

2014-01-02 Thread Mark Lawrence
Mark Lawrence added the comment: How about "Error: vcvarsall.bat not found - VC++ not installed or wrong version" ? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.

[issue18310] itertools.tee() can't accept keyword arguments

2014-01-03 Thread Mark Lawrence
Mark Lawrence added the comment: >From the glossary Quote keyword argument: an argument preceded by an identifier (e.g. name=) in a function call or passed as a value in a dictionary preceded by **. For example, 3 and 5 are both keyword arguments in the following calls to complex(): comp

[issue20129] 3.4 on windows 7 can't import IntEnum

2014-01-04 Thread Mark Lawrence
New submission from Mark Lawrence: c:\Users\Mark\CrossCode>py -3.4 -c "from enum import IntEnum" Traceback (most recent call last): File "", line 1, in ImportError: cannot import name 'IntEnum' I had earlier tried to install the complete 3.4 setup on Window

[issue20129] 3.4 on windows 7 can't import IntEnum

2014-01-05 Thread Mark Lawrence
Mark Lawrence added the comment: Bah humbug just found an old enum.py file hanging around. -- resolution: -> rejected status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue20266] Bring Doc/faq/windows up to date

2014-01-17 Thread Mark Lawrence
Mark Lawrence added the comment: 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-windows. I think this also impacts on the section "How do I make

[issue20335] bytes constructor accepts more than one argument even of the first one is not a string

2014-01-21 Thread Mark Lawrence
Mark Lawrence added the comment: This shows the report to be wrong, you either have to pass an iterable of ints or a single int. Even the title is wrong, it doesn't accept more than one argument if the first one isn't a string, it raises a TypeError. Python 3.3.3 (v3.3.3:c3896275c0

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Mark Lawrence
Mark Lawrence added the comment: Not on my system, so what's changed? Python 3.3.3 (v3.3.3:c3896275c0f6, Nov 18 2013, 21:18:40) [MSC v.1600 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>>

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Mark Lawrence
Mark Lawrence added the comment: Two attempts, one with the pipe "|" symbol in the mode, one without. >>> import tarfile; tarfile.open('non-existing', 'r|') Traceback (most recent call last): File "", line 1, in File "C:\Python33\li

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Mark Lawrence
Mark Lawrence added the comment: I think there's a typo in the patch, test = 'xxx' but after the check for platform and mode, text = ''. -- ___ Python tracker <http:

[issue19145] Inconsistent behaviour in itertools.repeat when using negative times

2014-01-25 Thread Mark Lawrence
Mark Lawrence added the comment: msg209063 from Larry states "My concern is that itertools.repeat doesn't parse its arguments like other Python functions." From my viewpoint the only long term option is to bring repeat (and other functions that you may have found exhibiting

[issue19145] Inconsistent behaviour in itertools.repeat when using negative times

2014-01-25 Thread Mark Lawrence
Mark Lawrence added the comment: >From a user perspective the docs say this "itertools.repeat(object[, times]) - >Make an iterator that returns object over and over again. Runs indefinitely >unless the times argument is specified." So to me the use of "Times=None&

[issue20399] Comparison of memoryview

2014-01-27 Thread Mark Lawrence
Mark Lawrence added the comment: Some discussion here https://groups.google.com/forum/#!topic/dev-python/1D_iExlsva8 -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue20

[issue20467] Confusing wording about __init__

2014-01-31 Thread Mark Lawrence
New submission from Mark Lawrence: I found the wording here http://docs.python.org/3/reference/datamodel.html#object.__init__ very confusing as it implies that __init__ is the class constructor and not the initialiser. Specifically it says "As a special constraint on constructors, no

[issue20384] os.open() exception doesn't contain file name on Windows

2014-02-03 Thread Mark Lawrence
Mark Lawrence added the comment: Good afternoon, Would you please be kind enough to have my name removed from all nosy lists as I've no interest in being constantly reminded that I've been called a liar. Kindest regards. Mark Lawrence. On Monday, 3 February 2014, 14:46, Larr

[issue20384] os.open() exception doesn't contain file name on Windows

2014-02-03 Thread Mark Lawrence
Mark Lawrence added the comment: @Larry - thank you for the heads up. -- ___ Python tracker <http://bugs.python.org/issue20384> ___ ___ Python-bugs-list mailin

[issue7325] tempfile.mkdtemp() does not return absolute pathname when relative dir is specified

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue7325> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7776] http.client.HTTPConnection tunneling is broken

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue7776> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20384] os.open() exception doesn't contain file name on Windows

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue20384> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1353344] python.desktop

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue1353344> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19145] Inconsistent behaviour in itertools.repeat when using negative times

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue19145> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7262] codecs.open() + eol (windows)

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue7262> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20399] Comparison of memoryview

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue20399> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1776674] glob.glob inconsistent

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue1776674> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20047] bytearray partition bug

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue20047> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20467] Confusing wording about __init__

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue20467> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4492] httplib code thinks it closes connection, but does not

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue4492> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15027] Faster UTF-32 encoding

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -Arfrever ___ Python tracker <http://bugs.python.org/issue15027> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20266] Bring Doc/faq/windows up to date

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue20266> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2943] Distutils should generate a better error message when the SDK is not installed

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue2943> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20335] bytes constructor accepts more than one argument even if the first one is not a string

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue20335> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19548] 'codecs' module docs improvements

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue19548> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6128] Consequences of using Py_TPFLAGS_HAVE_GC are incompletely explained

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue6128> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19980] Improve help('non-topic') response

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue19980> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1100942] Add datetime.time.strptime and datetime.date.strptime

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue1100942> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2175] Expat sax parser silently ignores the InputSource protocol

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue2175> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue777588] asyncore is broken for windows if connection is refused

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue777588> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19104] pprint produces invalid output for long strings

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue19104> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue504219] locale.resetlocale is broken

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue504219> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7105] weak dict iterators are fragile because of unpredictable GC runs

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue7105> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue4945> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6501] Fatal error on startup with invalid PYTHONIOENCODING

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue6501> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue8075> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14910] argparse: disable abbreviation

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue14910> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4037] doctest.py should include method descriptors when looking inside a class __dict__

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue4037> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3802] smtpd.py __getaddr insufficient handling

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue3802> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19655] Replace the ASDL parser carried with CPython

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue19655> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1208730] expat binding for XML_ParserReset

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue1208730> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4727] copyreg doesn't support keyword only arguments in __new__

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue4727> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2213] build_tkinter.py does not handle paths with spaces

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue2213> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1098749] Single-line option to pygettext.py

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue1098749> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2889] curses for windows (alternative patch)

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue2889> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7442] _localemodule.c: str2uni() with different LC_NUMERIC and LC_CTYPE

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue7442> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6159] Tkinter.PanedWindow: docstring fixes, change in paneconfigure and removed some returns

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue6159> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1763] Get path to shell/known folders on Windows

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue1763> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6225] Fixing several minor bugs in Tkinter.Canvas and one in Misc._configure

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue6225> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6181] Tkinter.Listbox several minor issues

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue6181> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4350] Remove dead code from Tkinter.py

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue4350> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6335] Add support for mingw

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue6335> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16037] httplib: header parsing is unlimited

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue16037> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5717] os.defpath includes unix /bin on windows

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue5717> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7757] sys.path is incorrect when prefix is ""

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue7757> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue1887> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1615] PyObject_GenericGetAttr suppresses AttributeErrors in descriptors

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue1615> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4080] unittest: display time used by each test case

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue4080> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue877121] configure detects incorrect compiler optimization

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue877121> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15027] Faster UTF-32 encoding

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue15027> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6699] IDLE: Warn user about overwriting a file that has a newer version on filesystem

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue6699> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15721] PEP 3121, 384 Refactoring applied to tkinter module

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue15721> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17605] mingw-meta: build interpeter core

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue17605> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12558] Locale-dependent exception for float width argument to Tkinter widget constructor

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue12558> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue917120] imaplib: incorrect quoting in commands

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue917120> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue734176] Make Tkinter.py's nametowidget work with cloned menu widgets

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue734176> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6299] pyexpat build failure on Solaris 10 for 2.6.1/2.6.2

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue6299> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2202] urllib2 fails against IIS 6.0 (No support for MD5-sess auth)

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue2202> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9849] Argparse needs better error handling for nargs

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue9849> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1703592] have a way to ignore nonexisting locales in locale.setlocale

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue1703592> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9495] argparse unittest tracebacks are confusing if an error is raised when not expected

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue9495> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3778] python uninstaller leave registry entries

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue3778> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5124] IDLE - pasting text doesn't delete selection

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue5124> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue896330] pyconfig.h is not placed in --includedir

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue896330> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1617161] Instance methods compare equal when their self's are equal

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue1617161> ___ ___ Python-bugs-list mailing list Unsubscribe:

<    16   17   18   19   20   21   22   23   24   25   >