[issue18197] insufficient error checking causes crash on windows

2013-06-15 Thread Max DeLiso
Max DeLiso added the comment: ok I checked in to this more deeply and I was wrong about a few things. first, my patch is worthless - there are several more instances where the retval of fileno is passed directly to fstat and that is totally valid (provided the file* points to a valid file

[issue18289] Segmentation Fault using round()

2013-06-23 Thread Max Kaye
New submission from Max Kaye: Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print round(1.123456, 3) 1.12

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

2014-03-17 Thread Max Naumov
Max Naumov added the comment: Wouldn't this be more correct? --- Lib/distutils/msvc9compiler.py 2013-08-03T16:17:08+04:00 +++ Lib/distutils/msvc9compiler.py 2014-03-17T18:36:50.078672+04:00 @@ -411,7 +411,11 @@ '/Z7&#

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

2014-03-17 Thread Max Naumov
Max Naumov added the comment: It allows to install numpy on windows python 3.4. Just like the patch in the original post. Actually my patch is merely the original patch refactored. -- ___ Python tracker <http://bugs.python.org/issue16

[issue19864] multiprocessing Proxy docs need locking semantics explained

2013-12-02 Thread Max Polk
New submission from Max Polk: In the docs (both Python 2 and 3) for the multiprocessing module, the Proxy section needs to be explicit about the fact that is does NOT create locks around access to shared objects. Why? Because on the same page, we read about

[issue5329] os.popen2 and os.popen3 in python 2.6 incompatible with os.popen* in python 2.5

2009-07-08 Thread Max Bowsher
Changes by Max Bowsher : -- nosy: +maxb ___ Python tracker <http://bugs.python.org/issue5329> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue5329] os.popen2 and os.popen3 in python 2.6 incompatible with os.popen* in python 2.5

2009-07-08 Thread Max Bowsher
Max Bowsher added the comment: With or without tests, this is a regression from Python 2.5 - shouldn't something be done about that? -- ___ Python tracker <http://bugs.python.org/i

[issue6444] multiline exception logging via syslog handler

2009-07-09 Thread Max Arnold
New submission from Max Arnold : I use syslog message routing mechanism to log high-priority messages from my python code to separate file. When exceptions are logged, only first line routed to specified file, and the rest goes in /var/log/messages. Such problem exists when SyslogHandler

[issue6444] multiline exception logging via syslog handler

2009-07-13 Thread Max Arnold
Max Arnold added the comment: > Why can't you either use %r in the format string, or define your own handler/formatter to do exactly what you want? I'm describing default behaviour of logger.exception(). Out of the box (with SyslogHandler and "/dev/log") I'm unabl

[issue6444] multiline exception logging via syslog handler

2009-07-15 Thread Max Arnold
Max Arnold added the comment: Which syslog daemon you use? I've encountered this on syslog-ng. There is stripped down syslog-ng.conf (messages with facility LOCAL0 are routed to /var/log/local.log and all others to /var/log/defaul

[issue6444] multiline exception logging via syslog handler

2009-07-15 Thread Max Arnold
Max Arnold added the comment: I'll try to investigate this issue a bit more in a few days. I plan to compare sysklogd, sylog-ng and probably metalog. Maybe this issue is specific to syslog-ng only. -- status: pending -> open ___ Python

[issue6444] multiline exception logging via syslog handler

2009-08-20 Thread Max Arnold
Max Arnold added the comment: Sorry for long delay, I was on vacation. I have installed sysklogd, metalog and syslog-ng on a virtual machine and executed test script. First two daemons log exception as single concatenated line. Syslog-ng splits it as described in original report. Do you

[issue1711603] syslog syscall support for SysLogLogger

2009-06-22 Thread Max Arnold
Max Arnold added the comment: Can I vote for this issue? Many systems with syslog aren't configured to listen on UDP socket and thus out of the box SysLogHandler does not work. -- nosy: +LwarX ___ Python tracker <http://bugs.py

[issue1711603] syslog syscall support for SysLogLogger

2009-06-22 Thread Max Arnold
Max Arnold added the comment: Is it safe to use single handler instance in multiple loggers or single stream in multiple handlers? -- ___ Python tracker <http://bugs.python.org/issue1711

[issue1711603] syslog syscall support for SysLogLogger

2009-06-22 Thread Max Arnold
Max Arnold added the comment: Sorry, I've read your first reply too fast and incorrectly interpreted it as recommendation to use stream handler with /dev/log. Anyway, thank you for clarification. -- ___ Python tracker <http://bugs.py

[issue14903] dictobject infinite loop in module set-up

2016-07-20 Thread Max Khon
Max Khon added the comment: I reproduced the problem with Python 2.7.5 as shipped with CentOS 7: root@192.168.0.86 /home/padmin # python -V Python 2.7.5 root@192.168.0.86 /home/padmin # rpm -q python python-2.7.5-34.el7.x86_64 root@192.168.0.86 /home/padmin # (gdb) bt #0 lookdict_string (mp

[issue17724] urllib -- add_handler method refactoring for clarity

2013-04-13 Thread Max Mautner
New submission from Max Mautner: Response handlers are registered with the OpenerDirector class in the urllib.request module using the add_handler method--it's a convoluted method that I refactored for legibility's sake. -- files: urllib_add_handler.patch keywords: patc

[issue17769] python-config --ldflags gives broken output when statically linking Python with --as-needed

2013-04-16 Thread Max Cantor
New submission from Max Cantor: On certain Linux distributions such as Ubuntu, the linker is invoked by default with --as-needed, which has an undesireable side effect when linking static libraries: it is bad at detecting required symbols, and the order of libraries on the command line become

[issue17724] urllib -- add_handler method refactoring for clarity

2013-04-17 Thread Max Mautner
Changes by Max Mautner : -- resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.org/issue17724> ___ ___ Python-bugs-list

[issue18038] Unhelpful error message on invalid encoding specification

2013-05-22 Thread Max Cantor
New submission from Max Cantor: When you specify a nonexistent encoding at the top of a file, like so for example: # -*- coding: fakefakefoobar -*- The following exception occurs: SyntaxError: encoding problem: with BOM This is very unhelpful, especially in cases where you might have made a

[issue25327] Windows 10 Installation Fails With Corrupt Directory Error

2015-10-06 Thread Max Farrell
New submission from Max Farrell: Cannot install Python 3.5 64-bit on Windows 10 64-bit Educational Edition. I have Python 3.4 Installed. Log include. -- components: Installation files: Python 3.5.0 (64-bit)_20151006150920.log messages: 252423 nosy: Max Farrell priority: normal

[issue25327] Python 3.5 Windows 10 Installation Fails With Corrupt Directory Error

2015-10-06 Thread Max Farrell
Max Farrell added the comment: Windows 10 64-Bit Educational Edition. Python 3.5 64-bit Installation failed. Directory is corrupt. Log included. -- title: Windows 10 Installation Fails With Corrupt Directory Error -> Python 3.5 Windows 10 Installation Fails With Corrupt Directory Er

[issue27972] Confusing error during cyclic yield

2016-09-06 Thread Max von Tettenborn
New submission from Max von Tettenborn: Below code reproduces the problem. The resulting error is a RecursionError and it is very hard to trace that to the cause of the problem, which is the runner task and the stop task yielding from each other, forming a deadlock. I think, an easy to make

[issue27972] Confusing error during cyclic yield

2016-10-10 Thread Max von Tettenborn
Max von Tettenborn added the comment: You are very welcome, glad I could help. -- ___ Python tracker <http://bugs.python.org/issue27972> ___ ___ Python-bugs-list m

<    1   2