[issue4391] use proper gettext plurals forms in argparse and optparse

2010-12-25 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


Removed file: http://bugs.python.org/file20152/fix-optparse-ngettext.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue4391
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue4391] use proper gettext plurals forms in argparse and optparse

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Previous version was incomplete.

--
nosy: +gward
Added file: http://bugs.python.org/file20164/fix-optparse-ngettext.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue4391
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6011] python doesn't build if prefix contains non-ascii characters

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Baptiste: I meant that I couldn’t reproduce the bug, not that the patch had 
solved it.

Victor: Your patch uses os.fsencode, so porting to distutils2 won’t be easy.  
Tarek and I have instated this policy 
http://wiki.python.org/moin/Distutils/FixingBugs to make sure we don’t have to 
reopen 50 bugs when distutils2 gets into the stdlib.

d2 has to stay compatible with 2.4-2.7, and 3.1-3.2 in a near future.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue6011
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6011] python doesn't build if prefix contains non-ascii characters

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I suggest you wait for distutils2 to be 3.x-compatible and then adapt your 
patch to fix the bug when used with 3.2, keeping backward compat.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue6011
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9893] Usefulness of the Misc/Vim/ files?

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

“It is maintained and updated by vimmers and we dont have to bother about it” 
is trumped by “I personally got tired of not having new keywords be recognized”.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9893
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10415] readline.insert_text documentation incomplete

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Hi Justin, thanks for the report and patch.  Would you like to turn your 
suggestion into a patch?  Guidelines are at http://www.python.org/dev/patches/

--
nosy: +eric.araujo
versions: +Python 2.7, Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10415
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1705393] Select() failure (race condition)

2010-12-25 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy:  -BreamoreBoy
stage: unit test needed - needs patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1705393
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7436] Define 'object with assignable attributes'

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

We’d have to be careful to distinguish attributes defined to be not assignable 
and CPython implementation details.  In the absence of a definition in the doc, 
there is a chicken-and-egg problem, so I think a patch would have to be 
discussed on python-dev to get answers from the language designers.

--
nosy: +eric.araujo
versions: +Python 2.7, Python 3.1, Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7436
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7678] subprocess.Popen pipeline example code in the documentation is lacking

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

As a non-expert user of subprocess, calling close before communicate seems 
strange to me.  Does the example code with a bug work if close is called after 
communicate?

In the 3.2 docs, we could update the example to use a with statement, unless it 
is deemed a distraction for this simple introductory section.

--
nosy: +eric.araujo, gregory.p.smith -georg.brandl
stage:  - needs patch
type:  - behavior
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7678
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8648] The UTF-7 codec functions are undocumented

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

FTR, typo fixed in r83977.

--
nosy: +eric.araujo
stage: needs patch - committed/rejected

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue8648
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9891] Minor doc typo at datamodel.rst: list - alist

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Fixed in r87486 (py3k), r87487 (3.1) and r87488 (2.7), thanks!

--
nosy: +eric.araujo
resolution:  - fixed
stage:  - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9891
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3216] Scarce msilib documentation

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Nonexistent parameter removed from the doc in r87489 and following.

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue3216
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9196] Improve docs for string interpolation %s re Unicode strings

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I’m not sure how much effort should be put into a patch here, considering that 
the horrible bytes/text confusion and implicit conversion should stop in Python 
3, and %-formatting is mildly deprecated.  Ezio, what do you think?

Craig, could you attach your test_object class and test code?  I wonder if the 
mixed behavior is still present in 3.x.

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9196
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9115] test_site: support for systems without unsetenv

2010-12-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Attached patch uses a copy of os.environ, like other tests already do.  Can you 
test it?

Also, is the lack of unsetenv a problem only for test_s_option?  If not, we 
should fix the test infrastructure, not each test.

--
nosy: +eric.araujo
stage:  - patch review
versions: +Python 3.1, Python 3.2
Added file: http://bugs.python.org/file20167/fix-9115.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9115
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6720] multiprocessing logging

2010-12-26 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

This is either out of date (2.5 doesn’t get bugfixes any more) or invalid 
(concerns a backport of multiprocessing outside of the stdlib).

--
nosy: +eric.araujo
resolution:  - rejected
stage:  - committed/rejected
status: open - closed
type: crash - behavior

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue6720
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10774] test_logging leaks temp files

2010-12-26 Thread Éric Araujo

New submission from Éric Araujo mer...@netwok.org:

After a test_logging run in 3.2, I get stray files in $TMP.  I think some test 
is not using the right mixin or addCleanup or tearDown.

Less importantly, some recently added docstrings produce unwanted output on the 
console (the method name is clear enough, the redundant docstring is 
redundant); attached output turns them into comments.

--
assignee: vinay.sajip
components: Tests
files: test_logging-nits.diff
keywords: patch
messages: 124669
nosy: eric.araujo, vinay.sajip
priority: normal
severity: normal
stage: needs patch
status: open
title: test_logging leaks temp files
type: behavior
versions: Python 3.2
Added file: http://bugs.python.org/file20168/test_logging-nits.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10774
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10756] Error in atexit._run_exitfuncs [...] Exception expected for value, str found

2010-12-26 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Looks good to me.  I’d just move the raising function into the test method (no 
need to update the patch).

--
nosy: +eric.araujo
stage:  - patch review

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10756
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10770] zipinfo - fix of a typo in the doc

2010-12-26 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Fixed, thanks.  Note that Georg and I follow the docs mailing list, so there is 
no need to open a report for each message.

--
nosy: +eric.araujo
resolution:  - fixed
stage: patch review - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10770
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1772833] -q (quiet) option for python interpreter

2010-12-28 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Is it on purpose that no sys.flags attribute has been added for quiet?

--
nosy: +eric.araujo
versions: +Python 3.2 -Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1772833
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10764] sysconfig and alternative implementations

2010-12-28 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I suggest this bug is superseded by #9878.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10764
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10774] test_logging leaves temp files

2010-12-28 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Great, thanks!

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10774
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10787] [random.gammavariate] Add the expression of the distribution in a comprehensive form for random.gammavariate

2010-12-28 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +rhettinger

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10787
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10766] optparse uses %s in gettext calls

2010-12-28 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

argparse is not new if you consider that it’s present in 2.7.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10766
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8654] Improve ABI compatibility between UCS2 and UCS4 builds

2010-12-28 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue8654
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6210] Exception Chaining missing method for suppressing context

2010-12-28 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue6210
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9893] Usefulness of the Misc/Vim/ files?

2010-12-30 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Alright, let me change my opinion: Let’s replace the Vim files by a README.vim 
file explaining where to get good helper files (like Misc/README.emacs added in 
r85927).  Then I will learn how to manage my Vim configuration to keep it 
updated (and adequate for each Python version), and when needed contact the Vim 
community to request updates.

--
stage:  - needs patch
type: resource usage - 

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9893
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1816] sys.cmd_flags patch

2010-12-30 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I’ve recently remarked that -i maps to both sys.flags.inspect and 
sys.flags.interactive.  Is this behavior useful?

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1816
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1284670] Allow to restrict ModuleFinder to get direct dependencies

2010-12-30 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

The depth parameter idea sounds like YAGNI, so let’s stay with a recurse 
boolean :)

--
assignee:  - eric.araujo
nosy:  -BreamoreBoy, misc_from_metz
stage: unit test needed - patch review
versions: +Python 3.3 -Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1284670
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1816] sys.cmd_flags patch

2010-12-30 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Okay, so having both flags makes sense.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1816
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9771] add an optional default argument to tokenize.detect_encoding

2010-12-30 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo
versions: +Python 3.3 -Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9771
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9153] Run tools and demos as part of the test suite

2010-12-30 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

It seems there is no easy way to test tools apart from human inspection.

--
title: Run tests and demos as part of the test suite - Run tools and demos as 
part of the test suite

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9153
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8626] TypeError: rsplit() takes no keyword arguments

2011-01-01 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

The description for the function directive is at 
http://docs.python.org/dev/documenting/markup.html  However, I’m not sure 
whether the doc is accurate, since there was a switch from spam([style]) to 
spam(style=None) some time ago, for example in r73291.

Let’s continue the discussion on the other bug.

--
nosy: +eric.araujo
resolution:  - duplicate
stage:  - committed/rejected
status: open - closed
superseder:  - Document lack of support for keyword arguments in C functions

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue8626
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10789] Lock.acquire documentation is misleading

2011-01-01 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I think this commit should be reverted:  Arguments with default values no 
longer use brackets, see for example r73291.  More info on #8350.

--
nosy: +eric.araujo, georg.brandl

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10789
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10789] Lock.acquire documentation is misleading

2011-01-01 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Thanks for the correction Georg.

In msg104113 (on #8350), I quoted 
http://docs.python.org/dev/reference/expressions#calls :

“An implementation may provide built-in functions whose positional parameters 
do not have names, even if they are ‘named’ for the purpose of documentation, 
and which therefore cannot be supplied by keyword.”

Previous consensus seemed to be that this warning was enough, but recent bugs 
such as this one show that it does trip up users, so there is further 
discussion about how best to document this CPython limitation (hence the 
dependency I’m adding).

--
dependencies: +Document lack of support for keyword arguments in C functions

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10789
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10751] REMOTE_USER and Remote-User collision in wsgiref

2011-01-02 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
components: +Library (Lib) -Extension Modules
stage:  - needs patch
title: WSGIREF - REMOTE_USER and REMOTE-USER collision - REMOTE_USER and 
Remote-User collision in wsgiref
type: security - behavior
versions: +Python 3.1, Python 3.2 -Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10751
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10791] Wrapping TextIOWrapper around gzip files

2011-01-02 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10791
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10818] pydoc: refactorize duplicate DocHandler and DocServer classes

2011-01-03 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
assignee: d...@python - 
components:  -Documentation
nosy: +eric.araujo, ron_adam -d...@python
stage:  - needs patch
type:  - feature request
versions:  -Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10818
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9115] test_site: support for systems without unsetenv

2011-01-03 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Fixed in r87691 (py3k), r87693 (3.1) and r87694 (2.7), thanks!

--
resolution:  - fixed
stage: patch review - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9115
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue444582] Finding programs in PATH, adding shutil.which

2011-01-03 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Sandro: I merely did some bug triage here.  I will let interested parties come 
to an agreement, and Tarek will make the decisions on this request.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue444582
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8033] sqlite: broken long integer handling for arguments to user-defined functions

2011-01-05 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
components: +Extension Modules -Library (Lib)
stage: needs patch - unit test needed
versions: +Python 2.7, Python 3.2 -Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue8033
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue4953] cgi module cannot handle POST with multipart/form-data in 3.0

2011-01-05 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

 I believe you are right that the io module does not support intermixing calls 
 to the main object and its buffer attribute

I’ve learned in a recent discussion on web-sig that you can mix them, provided 
that you call stream.flush() before using stream.buffer.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue4953
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10848] Move test.regrtest from getopt to argparse

2011-01-06 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10848
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10849] Backport test/__main__

2011-01-06 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

FWIW, I’ve already been caught by “./python -m test” not working with 3.1 and 
2.7 when doing backports and using my shell history functionality.  I share 
Alexander’s viewpoint that adding test.__main__ is a core dev-specific 
convenience that should not count as a new feature.  I would not add it to the 
security-only branches, though.

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10849
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10860] urllib2 crashes on valid URL

2011-01-07 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Thanks for the report.  Can you test it with current versions (2.7, 3.1 or 3.2)?

--
nosy: +eric.araujo, orsenthil
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10860
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10862] Complete your registration to Python tracker -- key yq3FVw0zXbfo3RJCzK2PqphC2n0XTohy

2011-01-07 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
resolution:  - invalid
stage:  - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10862
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10860] Handle empty port after port delimiter in httplib

2011-01-07 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

The redirection is a red hearing, the error is clearly that an empty port after 
a port delimiter (like in http://host:) breaks httplib.  Do you want to work on 
a patch?  Helpful guidelines are found at http://www.python.org/dev/patches/

--
stage:  - needs patch
title: urllib2 crashes on valid URL - Handle empty port after port delimiter 
in httplib
type: crash - behavior

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10860
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10838] subprocess __all__ is incomplete

2011-01-07 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10838
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10860] Handle empty port after port delimiter in httplib

2011-01-07 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Yes.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10860
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10858] Make source code links less prominent

2011-01-07 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

1: I hope this will just be a matter of using the same Pygments theme in Sphinx 
and hgweb.

2: I don’t think hgweb can do that.  Mercurial being extensible, this addition 
may be a fun project.

3: Not all modules are good examples (see threading for some unelegant code), 
so I support ad-hoc selection.  I also support the real fix of improving the 
quality of every module, but that’s longer-term. :)

4: “Show Source” is a link that is easily overlooked IMO, a seealso section 
makes me think people will actually see the link.  There is also the minor 
concern of breaking expectations of people accustomed to Sphinx.

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10858
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9264] trace.py documentation is incomplete

2011-01-08 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
status: open - pending

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9264
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10868] ABCMeta.register() should work as a decorator

2011-01-08 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Thanks for the report and patch.  Some comments:


+Register a virtual subclass of an ABC. Returns the said subclass.
Should be “Return”, for consistency.

+return subclass # For usage as a decorator
I’d move that to the docstring.

Can you edit the docs (remember to use the versionchanged directive) too?

--
assignee:  - eric.araujo
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10533] Need example of using __missing__

2011-01-08 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Great, thanks.

We’ll see later if more cross-links are needed.

--
stage: needs patch - committed/rejected

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10533
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10868] ABCMeta.register() should work as a decorator

2011-01-08 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Edited your patch to fix some nits.  If there is no opposition, I’ll commit 
this to py3k when 3.2 is out.

--
Added file: http://bugs.python.org/file20316/abcmeta_register_v3.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10639] reindent.py converts newlines to platform default

2011-01-08 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I did a bit of testing on demo files.  The first one I tested with had mixed 
EOLs, in which case the newlines attribute will be a tuple and open(..., 
newline=r.newlines) will fail.  For reference: 
http://docs.python.org/dev/library/io#io.TextIOBase.newlines

What would be the best behavior in such cases?  Refuse the temptation to guess 
and exit?

--
nosy: +pitrou
status: pending - open

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10639
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10869] ast.increment_lineno() increments root node twice

2011-01-08 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
keywords: +needs review
nosy: +aronacher, rhettinger
resolution: fixed - 
stage:  - patch review

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10869
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10835] sys.executable default and altinstall

2011-01-08 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10835
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9419] RUNSHARED needs LDFLAGS

2011-01-08 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9419
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10512] regrtest ResourceWarning - unclosed sockets and files

2011-01-08 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10512
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9504] signal.signal/signal.alarm not working as expected

2011-01-08 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +pitrou

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9504
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10874] test_urllib2 shouldn't use is operator for comparing strings

2011-01-09 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Actually, this block of tests may be outdated.  Reading the comment above the 
list of (URIs, is_ftp) doubles makes you see that it was testing the automatic 
use of FTP in some file: URIs, a very dubious behavior that is now removed or 
deprecated.  Senthil, I think a little cleanup is needed.

--
assignee:  - orsenthil
nosy: +eric.araujo, orsenthil
versions: +Python 3.1

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10874
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10875] Update Regular Expression HOWTO

2011-01-09 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Good points overall.

The only subpoint I disagree with is this one: “Add the url 
'(http://kodos.sourceforge.net/)' to the text so that Windows help users can 
copy and paste it into a browser. (This should be a general policy.)”  IMO, 
it’s the job of the Sphinx builder to add URIs in plaintext if the format does 
not have hyperlinks.  -1 on cluttering the source and HTML output with 
duplicated links.

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10875
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10873] String formatting example invalid

2011-01-09 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


Removed file: http://bugs.python.org/file20330/unnamed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10873
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10877] Make Tools (and subdirs) a package (and subpackages)

2011-01-09 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10877
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10875] Update Regular Expression HOWTO

2011-01-09 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

 I agree that the .rst should not have two copies and that any windows.chm 
 specific fixup should be in the tool. Right now, right clicking gives a 
 context menu with one item: Properties. Clicking that brings up a dialog box 
 with a url that can be copied. Good enough for me at the moment but not 
 terribly obvious. A possible separate issue.

I would argue that this is a bug in the CHM viewers, not Python :)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10875
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10628] Typos in 3.2 what’s new

2011-01-09 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I collected typos instead of replying to python-checkins notifications, so as 
not to disturb Raymond’s writing process.  Now that the file is nearly complete 
and 3.2rc at hand, here is my updated patch.  It mixes real typos, one Python 
syntax fix, very minor typos, markup tweaks, and some rephrasing where the 
previous text was unclear to me.  Of course, I am not a native speaker, so 
you’re welcome to take my proposals merely as indications of unclarity and 
rephrase otherwise or ignore them altogether.

If that’s more convenient, I can make one patch for certain typos and fixes, 
one patch for minor nitpicks, and a list of unclear wording.

--
resolution: fixed - 
stage:  - patch review
status: closed - open
Added file: http://bugs.python.org/file20333/whatsnew-3.2-typos.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10628
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10628] Typos in 3.2 what’s new

2011-01-09 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


Removed file: http://bugs.python.org/file19942/whatsnew-3.2-typos.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10628
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10868] ABCMeta.register() should work as a decorator

2011-01-10 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

You should, otherwise how would you prove it’s fixed? :)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10868] ABCMeta.register() should work as a decorator

2011-01-10 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

-return  # Already a subclass
+return subclass # Already a subclass
PEP 8 advises to put two spaces before inline comments, for readability.
 (There is no need to upload a new patch, I’ll change that before commit.)

+self.assertIsInstahce(c, (A,))
This is fixed in the newest version of your patch.  Running tests before
uploading diffs catches such errors :)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10868
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8084] pep-0370 on osx duplicates existing functionality

2011-01-10 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue8084
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10875] Update Regular Expression HOWTO

2011-01-10 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Looks good, builds without warnings.

Note that you can use :ref:`re-syntax` and Sphinx will substitute the heading 
for you.  The :role:`some special text real-target` form is used when you 
want to control the text of the link.

(That thing is called an hyperlink target: 
http://docutils.sourceforge.net/docs/user/rst/quickref.html#hyperlink-targets)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10875
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10628] Typos in 3.2 what’s new

2011-01-10 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


Removed file: http://bugs.python.org/file20333/whatsnew-3.2-typos.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10628
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10628] Typos in 3.2 what’s new

2011-01-10 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Remaining fixes and nitpicks, in separate patches to avoid missing fixes when 
cherry-picking nits.

--
Added file: http://bugs.python.org/file20341/whatsnew-3.2-typos.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10628
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10628] Typos in 3.2 what’s new

2011-01-10 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


Added file: http://bugs.python.org/file20342/whatsnew-3.2-nitpicks.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10628
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1109963] bdist_wininst ignores build_lib from build command

2011-01-10 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1109963
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10884] pkgutil EggInfoDistribution requirements for .egg-info metadata

2011-01-11 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Thanks Michael for the report and fix.   Would you add a test for that fix?

Minor note: I follow docstrings good practices in my commit messages, making 
sure that the first line makes sense on its own (it’s used in short logs) and 
wrapping my lines under 80 characters, for the usual reasons.

--
versions: +3rd party -Python 2.5, Python 2.6, Python 2.7, Python 3.1, Python 
3.2, Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10884
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10848] Move test.regrtest from getopt to argparse

2011-01-11 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
keywords:  -easy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10848
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7057] tkinter doc: more 3.x updates

2011-01-11 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

 I used 'manN'
FYI, there is a :file:`man{n}` construct where braces mark up replaceable text, 
like the var element in HTML.

--
nosy: +d...@python, eric.araujo -georg.brandl

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7057
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3693] Obscure array.array error message

2011-01-11 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
components: +Extension Modules -Library (Lib)
nosy: +alexandre.vassalotti, georg.brandl
stage: unit test needed - needs patch
versions: +Python 2.7, Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue3693
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10885] multiprocessing docs

2011-01-11 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +asksol, jnoller

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10885
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue4395] Document auto __ne__ generation; provide a use case for non-trivial __ne__

2011-01-11 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +d...@python -georg.brandl
stage:  - needs patch
type:  - behavior
versions: +Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue4395
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10799] Improve webbrowser.open doc (and, someday, behavior?)

2011-01-11 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

 I thought of adding 'http://' if not present but that would disable opening 
 files in a file browser.

I think that’s a Windows-specific behavior, not a promise of the *web*browser 
module.

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10799
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10441] some stdlib modules need to be updated to handle SSL certificate validation

2011-01-12 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

We tend to spend some time on documentation: 
http://docs.python.org/dev/library/ssl#ssl.SSLContext.set_default_verify_paths

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10441
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10891] Tweak sorting howto to eliminate redundancy

2011-01-12 Thread Éric Araujo

New submission from Éric Araujo mer...@netwok.org:

When reading over the sorting howto, I noticed redundancy of the form “the 
list.sort() method of a list”.  Raymond, if you approve the attached patch, 
please assign back to me.  There were no warnings during doc build and no link 
was broken.

Note that :meth:`list.sort` (or :meth:`~list.sort`) does not trigger a link to 
the doc of the method, since sort is not marked up with a method directive but 
listed in a table alongside other list and bytearray methods 
(http://docs.python.org/dev/library/stdtypes#typesseq-mutable).  This table is 
preceded by index-generating markup, but it does not create a target for 
:meth:`list.sort`; that’s a separate issue.  Until it’s solved, the sorting 
howto could turn the first occurrence of “list” into a link to the right 
section, using :ref:`typesseq-mutable list`, or continue to live without a 
link to list or list.sort.

--
assignee: rhettinger
components: Documentation
files: minor-sorting-changes.diff
keywords: patch
messages: 126083
nosy: d...@python, eric.araujo, rhettinger
priority: normal
severity: normal
stage: commit review
status: open
title: Tweak sorting howto to eliminate redundancy
versions: Python 2.7, Python 3.1, Python 3.2
Added file: http://bugs.python.org/file20364/minor-sorting-changes.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10891
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10892] segfault with del X.__abstractmethods__

2011-01-12 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I think a crash does not qualify as security issue, hence removing 2.6.

--
nosy: +eric.araujo
versions:  -Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10892
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue775321] plistlib error handling

2011-01-12 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I think this was closed prematurely.  I would like a core dev to assess this 
issue and reject or validate it.

--
nosy: +eric.araujo -BreamoreBoy
resolution: wont fix - 
stage: patch review - 
status: closed - open
versions: +Python 3.3 -Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue775321
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue775321] plistlib error handling

2011-01-12 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +georg.brandl, mher, ned.deily, ronaldoussoren

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue775321
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue985064] plistlib crashes too easily on bad files

2011-01-12 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

See also reopened dependency #775321.

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue985064
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10897] UNIX mmap unnecessarily dup() file descriptor

2011-01-12 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Thanks for the report and patch.  Can you refresh it against the py3k branch?  
Bugs are fixed there and then backported to 3.1 and 2.7.  If possible, please 
include a test in your patch.

--
nosy: +eric.araujo, facundobatista, georg.brandl, josiahcarlson, pitrou
stage:  - patch review
versions:  -Python 2.5, Python 2.6, Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10897
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10894] Making stdlib APIs private

2011-01-12 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10894
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10895] Private stdlib API: getopt, getpass, glob, gzip, genericpath, gettext

2011-01-12 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +brett.cannon, eric.araujo, rhettinger

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10895
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue4953] cgi module cannot handle POST with multipart/form-data in 3.x

2011-01-13 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Small tip: To ease review, I recommend you work from a checkout of the
Subversion py3k branch, using svn add if you have new files and then
producing one svn diff of the whole checkout.  It’s easier than looking
at multiple files, even more so if they’re hidden in a zip.  We
programmers like text :)

You can also remove outdated patches from this page to make it clearer.

--
title: cgi module cannot handle POST with multipart/form-data in3.0 - 
cgi module cannot handle POST with multipart/form-data in 3.x

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue4953
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5863] bz2.BZ2File should accept other file-like objects.

2011-01-13 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

We’ve already agreed the feature is desirable; what’s missing is a patch, not 
user stories :)

--
nosy: +niemeyer
versions: +Python 3.3 -Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5863
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10893] The docs mark staticmethod as a function

2011-01-13 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

staticmethod being a type or int being a function is really a CPython 
implementation detail.  If the docs say something is a class, it behaves as a 
class, you can subclass it and everything, and the other VMs implement it as a 
class, why would you want to consider the detail that it’s really a C function?

--
nosy: +eric.araujo
stage:  - committed/rejected
versions:  -Python 2.5, Python 2.6, Python 2.7, Python 3.1, Python 3.2, Python 
3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10893
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10893] The docs mark staticmethod as a function

2011-01-13 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Okay, scratch the comment about int, it’s not been accurate for quite a number 
of years.  Going back to staticmethod, my point still applies: Follow what the 
docs say.

staticmethod is a type in CPython probably due to the way descriptors work; 
contextlib.closing is a class for simplicity and efficiency; both of these 
examples are irrelevant internal details, they’re marked up as functions, so 
you should treat them as functions.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10893
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10893] The docs mark staticmethod as a function

2011-01-13 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I don’t have enough experience to make a judgment call here.  Raymond or Georg, 
can you?

--
nosy: +georg.brandl
versions: +Python 2.7, Python 3.1, Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10893
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue4953] cgi module cannot handle POST with multipart/form-data in 3.x

2011-01-13 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Can one person please

1) Sum up the discussion and its outcome briefly

2) Remove all patches and replace them with one diff with docs, tests and code 
(even if you have new files, you don’t have to put them in a zip, use svn add 
and they will show up in the svn diff, which is really easier to review)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue4953
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue4953] cgi module cannot handle POST with multipart/form-data in 3.x

2011-01-13 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


Removed file: http://bugs.python.org/file20288/unnamed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue4953
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10912] PyObject_RichCompare differs in behaviour from PyObject_RichCompareBool ; difference not noted in documentation

2011-01-15 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +Devin Jeanpierre

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10912
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2275] urllib/httplib header capitalization

2011-01-16 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Title case is not the right thing for all headers: TE, WWW-Authenticate, etc.

While we're changing this, why not implement something to return headers in the 
order recommended in the RFC?  (Probably another feature request)

--
nosy: +eric.araujo
stage:  - patch review
title: urllib2 header capitalization - urllib/httplib header capitalization
versions: +Python 3.3 -Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2275
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10917] PEP 333 link to CGI specification is broken

2011-01-17 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

The age of core developers may surprise you.

For the anecdote, I used to game and use Internet slang, and to me w00t == wut 
== what; I’ve never seen it used to mean “great”.

--
assignee: docs@python - georg.brandl
components:  -Documentation
nosy: +eric.araujo -docs@python
versions:  -3rd party, Python 2.5, Python 2.6, Python 2.7, Python 3.1, Python 
3.2, Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10917
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



<    1   2   3   4   5   6   7   8   9   10   >