[issue6444] multiline exception logging via syslog handler

2009-07-15 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: Well, I copied your script to log1.py and ran it twice. Here's a screenshot from my system log viewer: http://imgur.com/EYnfQ.png I know you can't see all the output in the screenshot, but if I scroll to the right as far as possible I can

[issue6136] Make logging configuration files easier to use

2009-07-15 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: There hasn't been any activity for around a month now - marking as pending, will close shortly unless there's some reason not to. -- resolution: - wont fix status: open - pending ___ Python

[issue6490] os.popen documentation in 2.6 is probably wrong

2009-07-15 Thread krawyoti
New submission from krawyoti krawy...@yahoo.com: The documentation in Python 2.6 claims os.popen is deprecated [1]. This is probably a false claim. I think that at some point os.popen got confused with os.popen2, os.popen3, os.popen4 and the popen2 module, all of which are correctly deprecated.

[issue6490] os.popen documentation in 2.6 is probably wrong

2009-07-15 Thread krawyoti
Changes by krawyoti krawy...@yahoo.com: -- type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6490 ___ ___ Python-bugs-list mailing

[issue1370] Use System.identityHashCode for id()

2009-07-15 Thread Samuele Pedroni
Samuele Pedroni pedro...@users.sourceforge.net added the comment: on a moving gc the identity hash is not unique, id() needs to be unique. So not using it is a matter of correctness not speed. But this issue is too terse to be sure what is talking about. -- nosy: +pedronis title: Doc

[issue1370] Doc changes left over after mega-merge from trunk

2009-07-15 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: You probably wanted to send this message to the jython tracker :-) -- nosy: +amaury.forgeotdarc title: Use System.identityHashCode for id() - Doc changes left over after mega-merge from trunk

[issue6483] Modules are not deallocated correctly if m_size = -1

2009-07-15 Thread Julian Andres Klode
Julian Andres Klode j...@jak-linux.org added the comment: I believe this may be related to Python/import.c (l. 592): def-m_base.m_copy = PyDict_Copy(dict); It creates a copy of the module dictionary, but the reference count of this copy is not decreased when the module object is

[issue6444] multiline exception logging via syslog handler

2009-07-15 Thread Max Arnold
Max Arnold lwa...@gmail.com 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/default.log):

[issue6444] multiline exception logging via syslog handler

2009-07-15 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: I'm using whatever came with my Ubuntu system - I supposes that's syslogd. Perhaps there's some additional configuration with syslog-ng which will give you the results you want? Plainly, logging is send all the information across, whether

[issue6477] Pickling of NoneType raises PicklingError

2009-07-15 Thread Alexandre Vassalotti
Alexandre Vassalotti alexan...@peadrop.com added the comment: I don't see why you want to pickle NoneType. Do you have a proper use-case for this, or are you just playing around with pickle? -- nosy: +alexandre.vassalotti priority: - low ___ Python

[issue6491] Improve --with-dbmliborder option

2009-07-15 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: --with-dbmliborder option doesn't allow to specify that no dbm modules are requested. It also doesn't affect Anthony Baxter's gdbm module. The attached patch allows to specify --with-dbmliborder= which should

[issue6477] Pickling of NoneType raises PicklingError

2009-07-15 Thread July Tikhonov
July Tikhonov july.t...@gmail.com added the comment: No, my program failed on this. It was not a big problem to manage this, but I think it is a bug. And it isn't documented (or I can't find it). Other built-in types have no such problem. Is there something special with NoneType? --

[issue2389] Array pickling exposes internal memory representation of elements

2009-07-15 Thread Alexandre Vassalotti
Alexandre Vassalotti alexan...@peadrop.com added the comment: Committed fix for 3.x in r74013 and for 2.x in r74014. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2389

[issue6364] freeze tool broken in Python 3.x

2009-07-15 Thread Hagen Fürstenau
Hagen Fürstenau hfuerste...@gmx.net added the comment: I'm attaching a patch with the minimal changes I had to make to get a hello world script frozen under 3.x. They all have to do with changes between 2.x and 3.x. -- keywords: +patch Added file:

[issue5753] CVE-2008-5983 python: untrusted python modules search path

2009-07-15 Thread Jan Lieskovsky
Jan Lieskovsky ian...@seznam.cz added the comment: Link to older Python tracker issue discussing the same problem and closed with won't fix: http://bugs.python.org/issue946373 Strange enough, but implied from reading above issue, just an idea (don't shoot :)). Wouldn't it be possible to

[issue6076] Missing title for configDialog.py

2009-07-15 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Applied with r74019. Thanks for the patch! -- nosy: +amaury.forgeotdarc resolution: - accepted status: open - closed ___ Python tracker rep...@bugs.python.org

[issue4540] typo in a module describes utf-8 as uft-8

2009-07-15 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: This was fixed together with issue5453 -- resolution: - out of date status: open - closed superseder: - pydoc -k fails (release30-maint patch) ___ Python tracker rep...@bugs.python.org

[issue4147] xml.dom.minidom toprettyxml: omit whitespace for text-only elements

2009-07-15 Thread Jim Garrison
Jim Garrison jgarri...@troux.com added the comment: Also needed here. While pretty-printing should be able to insert non-significant whitespace BETWEEN xml elements, it should never alter the content of (i.e. insert whitespace into) existing text elements. -- nosy: +jgarrison

[issue6492] xml.etree does not escape CR, LF and TAB characters within attribute values

2009-07-15 Thread Devon
New submission from Devon devon.rueck...@temboo.com: similar minidom as reported in in #5752 -- components: XML files: test_tostring.py messages: 90547 nosy: devon severity: normal status: open title: xml.etree does not escape CR, LF and TAB characters within attribute values type:

[issue5752] xml.dom.minidom does not escape CR, LF and TAB characters within attribute values

2009-07-15 Thread Devon
Devon devon.rueck...@temboo.com added the comment: see also a similar issue in etree: #6492 -- nosy: +devon ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5752 ___

[issue6493] Can not set value for structure members larger than 32 bits

2009-07-15 Thread higstar
New submission from higstar adr...@higstar.com: Added a test to test_bitfields.py: def test_uint32(self): class X(Structure): _fields_ = [(a, c_uint32, 32)] x = X() x.a = 10 self.failUnlessEqual(x.a, 10) Run in Python 2.5.2 and 2.6.2:

[issue6493] Can not set value for structure members larger than 32 bits

2009-07-15 Thread higstar
higstar adr...@higstar.com added the comment: Also run in 3.0 -- versions: +Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6493 ___ ___

[issue6494] xmlrpc client does not support HTTPS

2009-07-15 Thread Leo
New submission from Leo theli...@optusnet.com.au: I just downloaded and installed V3.1 on Ubuntu and get the following error. File /usr/local/lib/python3.1/xmlrpc/client.py, line 1183, in send_request your version of http.client doesn't support HTTPS) Thanks, Leo -- messages:

[issue6444] multiline exception logging via syslog handler

2009-07-15 Thread Max Arnold
Max Arnold lwa...@gmail.com 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 ___

[issue6494] xmlrpc client does not support HTTPS

2009-07-15 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: This is not a bug in Python. You need to build Python with SSL support for this to work. -- nosy: +loewis resolution: - invalid status: open - closed ___ Python tracker rep...@bugs.python.org

[issue6431] Fraction fails equality test with a user-defined type

2009-07-15 Thread Case Van Horsen
Case Van Horsen cas...@gmail.com added the comment: I've attached a patch that creates DummyRational and then tests comparisons between Fraction and DummyRational. The __eq__ method also verifies that the type of the other argument is fractions.Fraction. -- Added file: