[issue13688] ast.literal_eval fails on octal numbers

2011-12-31 Thread Sergey Dorofeev
New submission from Sergey Dorofeev fido...@users.sourceforge.net: Python 3.2.2 (default, Nov 16 2011, 10:58:44) [C] on sunos5 Type help, copyright, credits or license for more information. import ast ast.literal_eval('10') 10 ast.literal_eval('0x10') 16 ast.literal_eval('010') Traceback

[issue13688] ast.literal_eval fails on octal numbers

2011-12-31 Thread Sergey Dorofeev
Sergey Dorofeev fido...@users.sourceforge.net added the comment: python 3 feature - should use 0o10 need to rebuild data file :( -- resolution: - rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue13677] correct docstring for builtin compile

2011-12-31 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13677 ___ ___ Python-bugs-list

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13663 ___

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Agreed with Martin. I would be nice to get a statement on the status of pootle.python.org (social aspects like updating and publishing the translations + organization of teams), but Georg seems busy. (This would probably be more at home on a

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I've never really had a hand in pootle.python.org; it was set up by Martin and Robert Lehmann, and Sandro Tosi also wanted to lend a hand... -- nosy: +lehmannro, sandro.tosi ___ Python tracker

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com added the comment: Yeah, I really would like to help with pootle, but it seems we don't have a current status of the thing + a roadmap to where we want to go. From the top of my head, I think we need at least: - the current setup of the machine/service -

[issue13609] Add os.get_terminal_size() function

2011-12-31 Thread Zbyszek Szmek
Zbyszek Szmek zbys...@in.waw.pl added the comment: Thanks for the review! New version is attached. The code is actually slightly shorter, but there are more docs. Doc/library/os.rst| 52 +++ Doc/whatsnew/3.3.rst |5 + Lib/os.py | 43

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: naoki: what is your actual complaint about the installation being outdated? Are you referring to the message catalog (documentation version), or the software? As for the message catalog, I don't think it should be updated too often (only

[issue13688] ast.literal_eval fails on octal numbers

2011-12-31 Thread Benjamin Peterson
Changes by Benjamin Peterson benja...@python.org: -- resolution: rejected - invalid ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13688 ___ ___

[issue13689] fix CGI Web Applications with Python link in howto/urllib2

2011-12-31 Thread Sandro Tosi
New submission from Sandro Tosi sandro.t...@gmail.com: Hi, as discussed on irc, howto/urllib2 refers to CGI Web Applications with Python, Part One on http://www.pyzine.com/Issue008/Section_Articles/article_CGIOne.html which is no more accessible. Given part two of that document is on

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread INADA Naoki
INADA Naoki songofaca...@gmail.com added the comment: On Sat, Dec 31, 2011 at 11:31 PM, Martin v. Löwis rep...@bugs.python.org wrote: Martin v. Löwis mar...@v.loewis.de added the comment: naoki: what is your actual complaint about the installation being outdated? Are you referring to the

[issue13690] Add DEBUG flag to documentation of re.compile

2011-12-31 Thread Filip Gruszczyński
New submission from Filip Gruszczyński grusz...@gmail.com: This is a useful flag and it would be good, if it was in documentation. -- messages: 150423 nosy: gruszczy priority: normal severity: normal status: open title: Add DEBUG flag to documentation of re.compile

[issue13690] Add DEBUG flag to documentation of re.compile

2011-12-31 Thread Filip Gruszczyński
Changes by Filip Gruszczyński grusz...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file24118/13690.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13690 ___

[issue13676] sqlite3: Zero byte truncates string contents

2011-12-31 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13676 ___ ___ Python-bugs-list mailing list

[issue13659] Add a help() viewer for IDLE's Shell.

2011-12-31 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I would like that to be a help() option, such as help(module, -b) or more verbosely, help(module, browser=True). This would be useful for the regular interactive interpreter as well. -- ___ Python

[issue13641] decoding functions in the base64 module could accept unicode strings

2011-12-31 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- keywords: +patch nosy: +berkerpeksag Added file: http://bugs.python.org/file24119/issue13641_v1.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13641

[issue12930] reindent.py inserts spaces in multiline literals

2011-12-31 Thread Jonathan Rogers
Jonathan Rogers jonathanrrog...@gmail.com added the comment: I don't think reindent.py should change any bytes inside string literals since it can't know anything about what those strings mean or how they'll be used by the program at run time. Unfortunately, it starts out by unconditionally

[issue12930] reindent.py inserts spaces in multiline literals

2011-12-31 Thread Jonathan Rogers
Jonathan Rogers jonathanrrog...@gmail.com added the comment: Rather than expanding tab characters inside string literals, it's safer to replace them with '\t'. -- Added file: http://bugs.python.org/file24120/save_strings.patch ___ Python tracker