[issue12930] reindent.py inserts spaces in multiline literals

2011-12-31 Thread Jonathan Rogers
Jonathan Rogers 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

[issue12930] reindent.py inserts spaces in multiline literals

2011-12-31 Thread Jonathan Rogers
Jonathan Rogers 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 calling the .expandtabs() m

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

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

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

2011-12-31 Thread Terry J. Reedy
Terry J. Reedy 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 tracker

[issue13676] sqlite3: Zero byte truncates string contents

2011-12-31 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

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

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

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

2011-12-31 Thread Filip Gruszczyński
New submission from Filip Gruszczyński : 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 ___

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread INADA Naoki
INADA Naoki added the comment: On Sat, Dec 31, 2011 at 11:31 PM, Martin v. Löwis wrote: > > Martin v. Löwis 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

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

2011-12-31 Thread Sandro Tosi
New submission from Sandro Tosi : 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 Michael's website (http://

[issue13688] ast.literal_eval fails on octal numbers

2011-12-31 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: rejected -> invalid ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread Martin v . Löwis
Martin v. Löwis 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 once per Python rele

[issue13609] Add "os.get_terminal_size()" function

2011-12-31 Thread Zbyszek Szmek
Zbyszek Szmek 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 +++ Lib/test

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread Sandro Tosi
Sandro Tosi 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 - updated packages for poot

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread Georg Brandl
Georg Brandl 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 Éric Araujo
Éric Araujo 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 mailing list rather

[issue13663] pootle.python.org is outdated.

2011-12-31 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___ Python tracker ___ ___ P

[issue13677] correct docstring for builtin compile

2011-12-31 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue13688] ast.literal_eval fails on octal numbers

2011-12-31 Thread Sergey Dorofeev
Sergey Dorofeev added the comment: python 3 feature - should use 0o10 need to rebuild data file :( -- resolution: -> rejected status: open -> closed ___ Python tracker ___

[issue13688] ast.literal_eval fails on octal numbers

2011-12-31 Thread Sergey Dorofeev
New submission from Sergey Dorofeev : 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 (most recent