[issue9934] Python Docs Typo

2010-09-23 Thread Retro
New submission from Retro : http://docs.python.org/distutils/sourcedist.html#manifest-related-options Please visit the above link and note the typo in: -o is a sortcut for --manifest-only. Should be: -o is a shortcut for --manifest-only. The word "sortcut" is a typo. Please fix it to "shortcut

[issue4661] email.parser: impossible to read messages encoded in a different encoding

2010-09-23 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue9933] os module does not have the documented EX_NOTFOUND attribute

2010-09-23 Thread Brian Curtin
Brian Curtin added the comment: The following code exists in Modules/posixmodule.c 8167 /* These come from sysexits.h */ ... 8216 #ifdef EX_NOTFOUND 8217 if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1; 8218 #endif /* EX_NOTFOUND */ sysexits.h on my Mac has no mention of EX_NO

[issue9933] os module does not have the documented EX_NOTFOUND attribute

2010-09-23 Thread R. David Murray
R. David Murray added the comment: Perhaps this constant existed at some point on some linux systems...google found one comment about it referencing posix.2. I also found it mentioned in a specific version of sendmail, and in bash. When it appears it seems to most often have the value 127.

[issue9933] os module does not have the documented EX_NOTFOUND attribute

2010-09-23 Thread R. David Murray
R. David Murray added the comment: s/linux/unix/ -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9933] os module does not have the documented EX_NOTFOUND attribute

2010-09-23 Thread Brian Curtin
Brian Curtin added the comment: +1 for removing it from the docs. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue9935] Faster pickling of instances

2010-09-23 Thread Antoine Pitrou
New submission from Antoine Pitrou : This is a bunch of assorted optimizations which make pickling of user-defined classes quite a bit faster. Example on a minimal instance: $ python -m timeit -s "import pickle; import collections, __main__; __main__.X=type('X', (), {}); x=X()" "pickle.dumps(

[issue6608] asctime does not check its input

2010-09-23 Thread MunSic JEONG
MunSic JEONG added the comment: Thank you for a kind guidance. I uploaded patch with - function name "checktm" - add comment above gettmarg - move comment in "checktm" to (above function signature) - change comment little bit to mention issue6608 - "{" on new line -- Added fil

[issue9783] _elementtree.c warnings under 64-bit Windows

2010-09-23 Thread Jon Anglin
Jon Anglin added the comment: issue9783.diff provides a patch that will compile clean on 32 and 64 bit Windows systems. I tried to avoid explicit casts where I could, but it was not always possible. I have ported a lot of my company's code to 64 bit (all Windows based). In my experience man

[issue2209] mailbox module doesn't support compressed mbox

2010-09-23 Thread Skye
Changes by Skye : -- nosy: +skyepn ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailma

[issue9784] _msi.c warnings under 64-bit Windows

2010-09-23 Thread Jon Anglin
Jon Anglin added the comment: issue9784.diff contains a patch that compiles clean on 32 and 64 bit Windows. This patch is exactly what Amaury Forgeot d'Arc recommended in msg115750. -- keywords: +patch Added file: http://bugs.python.org/file18989/issue9784.diff ___

[issue6608] asctime does not check its input

2010-09-23 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue9936] trace misreports "missing" lines

2010-09-23 Thread Alexander Belopolsky
New submission from Alexander Belopolsky : With the attached traceme.py, $ python -m trace -m -s -c traceme.py lines cov% module (path) 250% traceme (traceme.py) $ cat traceme.cover x = (1, >> 2, 1: 3) This is wrong because all lines in traceme.py

[issue9936] trace misreports "missing" lines

2010-09-23 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I am attaching a patch that fixes this issue. Need to add a unit test. -- assignee: -> belopolsky components: +Library (Lib) keywords: +patch stage: -> unit test needed type: -> behavior versions: +Python 3.2 Added file: http://bugs.python.org

[issue9936] trace misreports "missing" lines

2010-09-23 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +eli.bendersky, terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue1794] Hot keys must work in any keyboard layout

2010-09-23 Thread R. David Murray
R. David Murray added the comment: it does seem that the consensus is that this is not a generally desirable feature. -- nosy: +r.david.murray -BreamoreBoy resolution: -> rejected stage: -> committed/rejected status: open -> closed ___ Python trac

[issue1763] Winpath module - easy access to Windows directories like My Documents

2010-09-23 Thread R. David Murray
Changes by R. David Murray : -- status: closed -> languishing ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue9936] trace misreports "missing" lines

2010-09-23 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- versions: +Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue9933] os module does not have the documented EX_NOTFOUND attribute

2010-09-23 Thread Kamil Kisiel
Kamil Kisiel added the comment: I mostly wanted to just report the issue rather than propose a solution, so I'm in favor of whatever everyone feels is best. As for how I came across the issue, it was mostly curiosity, I wanted to see the numerical value of all the os.EX_* constants and was pr

[issue7519] ConfigParser can't read files with BOM markers

2010-09-23 Thread Andrew Ziem
Changes by Andrew Ziem : -- nosy: +AndrewZiem ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue459007] Document sys.path on Windows

2010-09-23 Thread MunSic JEONG
Changes by MunSic JEONG : -- nosy: +ruseel ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue9933] os module does not have the documented EX_NOTFOUND attribute

2010-09-23 Thread Martin v . Löwis
Martin v. Löwis added the comment: I fail to see the issue. The documentation clearly says, above the block of all the EX_* constants: Note Some of these may not be available on all Unix platforms, since there is some variation. These constants are defined where they are defined by the under

[issue9552] ssl build under Windows always rebuilds OpenSSL

2010-09-23 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Sorry, previous one contained experimental code for another issue. I've attached correct one. -- Added file: http://bugs.python.org/file18992/py3k_better_build_ssl.zip ___ Python tracker

<    1   2