[issue26784] regular expression problem at umlaut handling

2016-04-16 Thread Marcus
Marcus added the comment: Thx for your explanation. You explained why [\s\w] didn't match for "ä". In my situation it didn't matches for the first "ä" but the second time I used [\s\w] in the same regex it matched at the second "ä

[issue26784] regular expression problem at umlaut handling

2016-04-16 Thread Marcus
Marcus added the comment: When I replace the first "ä" with a random letter the untouched expression has not problems to match the second word which contains also an "ä" s = "E-112233-555-11 | Bläh - Bläh" #untuched string s = "E-112233-555-11 | Blo

[issue26784] regular expression problem at umlaut handling

2016-04-16 Thread Marcus
New submission from Marcus: Working with this example string "E-112233-555-11 | Bläh - Bläh" with the following code leeds under python 2.7.10 (OSX) to an exception whereas the same code works under python 3.5.1 (OSX). s = "E-112233-555-11 | Bläh - Bläh" expr = re.compil

[issue28518] execute("begin immediate") throwing OperationalError

2016-12-31 Thread Marcus
Changes by Marcus <mar...@callidomus.com>: -- nosy: +callidomus ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28518> ___ __

[issue34895] Mark optional stdlib modules in documentation

2018-10-24 Thread Marcus
Marcus added the comment: My concern is that certain missing build-time dependencies do not stop the build but trigger an easy to miss message at the end of the build stage (only). Also the end user doesn't get to see this. At the same time these modules are sort of expected to be part

[issue34895] Mark optional stdlib modules in documentation

2018-10-04 Thread Marcus
New submission from Marcus : Some stdlib modules have external build time dependencies and will be automatically disabled if the dependencies can't be met (cf. detect_modules() in setup.py). >From a user's perspective there is no reason to assume that the presence of a >stdlib modu

[issue9639] urllib2's AbstractBasicAuthHandler is limited to 6 requests

2010-08-19 Thread Marcus Huewe
New submission from Marcus Huewe suse-...@gmx.de: It seems that commit r81636 broke urllib2's AbstractBasicAuthHandler because the retried attribute isn't reset on success. Therefore it's limited to 6 requests. The attached patch should fix this problem. -- components: Library (Lib

[issue4253] Maildir dumpmessage on

2008-11-03 Thread Marcus CM
New submission from Marcus CM [EMAIL PROTECTED]: When using maildir on windows, the maildir._dump_message erronously added \r\n to \r\r\n : in mailbox.py target.write(buffer.read().replace('\n', os.linesep)) -- components: Library (Lib) messages: 75463 nosy: [EMAIL PROTECTED] severity

[issue3802] smtpd.py __getaddr insufficient handling

2008-09-07 Thread Marcus CM
New submission from Marcus CM [EMAIL PROTECTED]: The __getaddr does not handle certain valid MAIL FROM well : For eg, [EMAIL PROTECTED] SIZE= AUTH= would result in a mismatch of bracket handling. Suggested fix is :- def __getaddr(self, keyword, arg): address = None

[issue11896] Save on Close fails in IDLE, from Linux system

2011-04-21 Thread marcus harris
New submission from marcus harris harrismh...@charter.net: Under some circumstances, which I will detail later down the note, if I click File -- Close without explicitly saving, and without running the module with Run -- Run Module , then the last changes I made to the file do not get saved

[issue11896] Save on Close fails in IDLE, from Linux system

2011-04-21 Thread marcus harris
marcus harris harrismh...@charter.net added the comment: Terry Reedy was not able to reproduce this snag on an XP system; however, suggested there might be a real save on close error on the linux side... also requested to be place on the nosy list

[issue17558] gdb debugging python frames in optimised interpreters

2013-03-27 Thread Marcus Cobden
New submission from Marcus Cobden: I've made some tweaks to the libpython.py util functions to better pick up python frames when using a normal python interpreter. It's not by any means perfect, but it works on my ubuntu-shipped python interpreter (with debugging symbols installed

[issue17558] gdb debugging python frames in optimised interpreters

2013-07-09 Thread Marcus Cobden
Marcus Cobden added the comment: Is there anyone who could take a look at this? I'd rather it not bit-rot into oblivion. I know the code quality is rather poor, but I can fix that. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue15278] UnicodeDecodeError when readline in codecs.py

2012-10-08 Thread Marcus Gröber
Marcus Gröber added the comment: I came across this today as well. A short way of summarizing this error seems to be: Reading a file using readline (or for line in file) fails, if the following two conditions are true: • A codec (e.g. UTF-8) for a multi-byte encoding is used

[issue19749] test_venv failure on AIX: 'module' object has no attribute 'O_NOFOLLOW'

2013-11-24 Thread Marcus Smith
Marcus Smith added the comment: There's a new PR to fix this in the pip 1.5.X branch: https://github.com/pypa/pip/pull/1344 -- nosy: +Marcus.Smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19749

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

2014-03-08 Thread Marcus Smith
Marcus Smith added the comment: Legacy version. nice. btw, http://packaging.python.org/en/latest/tutorial.html#creating-and-using-virtual-environments; will certainly end up including pyvenv command examples as well. currently just mentioned in a footnote. like I mentioned on distutils

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

2014-03-10 Thread Marcus Smith
Marcus Smith added the comment: about the hhgtp link, logged here: https://github.com/python/pythondotorg/issues/268 (and already fixed) also, pyvenv is more prominent now in PUG as of latest changes (see https://github.com/pypa/python-packaging-user-guide/pull/35

[issue20915] Add pip section to experts list in devguide

2014-03-17 Thread Marcus Smith
Marcus Smith added the comment: ok, add me. -- nosy: +Marcus.Smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20915 ___ ___ Python-bugs-list

[issue27415] regression: BaseEventLoop.create_server does not accept port=None

2016-07-12 Thread Marcus Cobden
Changes by Marcus Cobden <mar...@marcuscobden.co.uk>: -- title: BaseEventLoop.create_server does not accept port=None -> regression: BaseEventLoop.create_server does not accept port=None ___ Python tracker <rep...@bugs.pytho

[issue27415] BaseEventLoop.create_server does not accept port=None

2016-06-30 Thread Marcus Cobden
Marcus Cobden added the comment: I should add that port=0 is an acceptable workaround -- type: -> behavior ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.or

[issue27415] BaseEventLoop.create_server does not accept port=None

2016-06-29 Thread Marcus Cobden
New submission from Marcus Cobden: With the most recent 3.4 bugfix, calling create_server with port=None stopped working. This also affects 3.5, and I would imagine also 3.6, but haven't checked that. Test case: import asyncio; l = asyncio.get_event_loop(); l.run_until_complete

[issue27415] regression: BaseEventLoop.create_server does not accept port=None

2016-09-16 Thread Marcus Cobden
Marcus Cobden added the comment: Ah thanks, that's fair. It seems a shame since this regression was introduced to 3.4 by a security/bugfix release. Since there's a workaround it's not a big deal. -- ___ Python tracker <rep...@bugs.python.org>

[issue27415] regression: BaseEventLoop.create_server does not accept port=None

2016-09-16 Thread Marcus Cobden
Marcus Cobden added the comment: Still doesn't work in Python 3.4.5; I can confirm it's fixed in Python 3.5.2. -- resolution: works for me -> status: closed -> open versions: -Python 3.5 ___ Python tracker <rep...@bugs.python.o

[issue15018] Incomplete Python LDFLAGS and CPPFLAGS used for extension modules on posix

2012-06-06 Thread Marcus von Appen
New submission from Marcus von Appen m...@sysfault.org: If CPython is built and installed with additional CPPFLAGS and/or LDFLAGS on a posix platform, those flags are not passed to C extension modules, leaving users (in the worst case) lost without the ability to build and install C extension

[issue18008] python33-3.3.2 Parser/pgen: Permission denied

2013-05-18 Thread Marcus von Appen
Marcus von Appen added the comment: This is a FreeBSD-specific problem with the Python 3.3 port. Using pmake (BSD's make implementation) leads to random errors on either generating pgen or executing pgen. This seems to happen since Python 3.3.1 randomly and is quite hard to reproduce

[issue16283] ctypes.util.find_library does not find all DLLs anymore

2012-10-19 Thread Marcus von Appen
New submission from Marcus von Appen: ctypes.util.find_library does not seem to be able to find certain libraries in Python3.3 on Win32 platforms anymore, if the library suffix is omitted. For some reason, os.path.isfile() in ctypes.util.find_library returns False in those cases. Please try

[issue20397] distutils --record option does not validate existance of byte-compiled files

2014-01-26 Thread Marcus von Appen
New submission from Marcus von Appen: Using the --record argument with distutils' install command currently assumes that all .py files can be compiled (and optimized) successfully. If this is not the case for whatever reason, you end up with invalid entries in the record list. install_lib

[issue46710] Install launcher for all users on the domain

2022-02-10 Thread Marcus Fillipe Groetares Rocha Siqueira
New submission from Marcus Fillipe Groetares Rocha Siqueira : In Python 3.9.6 (64 bits) Windows Installer, the first page show a checkbox for "install launcher for all users (recommended)", but i'd like to now why the box is not currently allowed to check. In "customize insta

[issue46710] Install launcher for all users on the domain

2022-02-10 Thread Marcus Fillipe Groetares Rocha Siqueira
Marcus Fillipe Groetares Rocha Siqueira added the comment: Thanks Steve, it worked. Hava a nice day :) -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or