[issue14165] The new shlex.quote() function should be marked New in version 3.3

2012-03-01 Thread Sven Marnach
New submission from Sven Marnach s...@marnach.net: The function shlex.quotes() [1] does not yet exist in Python 3.2 [2], so it should be marked New in version 3.3. in the docs. I double-checked that it really does not yet exist in 3.2 and is not only missing from the 3.2 documentation. [1]:

[issue14165] The new shlex.quote() function should be marked New in version 3.3

2012-03-01 Thread Eli Bendersky
Changes by Eli Bendersky eli...@gmail.com: -- nosy: +eli.bendersky ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14165 ___ ___ Python-bugs-list

[issue14165] The new shlex.quote() function should be marked New in version 3.3

2012-03-01 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 73be78d21003 by Eli Bendersky in branch 'default': Add missing 'versionadded' for shlex.quote; closes #14165 http://hg.python.org/cpython/rev/73be78d21003 -- nosy: +python-dev resolution: - fixed stage: -

[issue14165] The new shlex.quote() function should be marked New in version 3.3

2012-03-01 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks, I forgot that :) shlex.quote used to be pipes.quote, an undocumented but used function; do you think this should be mentioned in shlex.quote’s doc to let people know thaw if they used pipes.quote they have an official upgrade path, or

[issue14165] The new shlex.quote() function should be marked New in version 3.3

2012-03-01 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: IMHO just leave it. The documentation is mainly for reference, i.e. describing in the best way possible what's available *now*. If you want to mention an upgrade path, write a blog :) -- ___ Python