[issue10627] Remove usage of deprecated configparser.ConfigParser class in the stdlib

2010-12-15 Thread Łukasz Langa
Łukasz Langa added the comment: SafeConfigParser was renamed to ConfigParser in r87299 so this change is no longer necessary. -- resolution: -> out of date stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue10627] Remove usage of deprecated configparser.ConfigParser class in the stdlib

2010-12-04 Thread Éric Araujo
Éric Araujo added the comment: I’ve changed d2 to use RawConfigParser six months ago: http://bitbucket.org/tarek/distutils2/changeset/e2a1113b5572 I don’t think we need the interpolation provided by SafeConfigParser. -- ___ Python tracker

[issue10627] Remove usage of deprecated configparser.ConfigParser class in the stdlib

2010-12-04 Thread Tarek Ziadé
Tarek Ziadé added the comment: So, as discussed w/ Lukasz: - distutils1 gets unchanged and the warning is silenced there - distutils2 uses SafeConfigParser [done] -- ___ Python tracker ___

[issue10627] Remove usage of deprecated configparser.ConfigParser class in the stdlib

2010-12-04 Thread Łukasz Langa
Changes by Łukasz Langa : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue10627] Remove usage of deprecated configparser.ConfigParser class in the stdlib

2010-12-04 Thread Łukasz Langa
Changes by Łukasz Langa : Added file: http://bugs.python.org/file19939/issue10627.diff ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue10627] Remove usage of deprecated configparser.ConfigParser class in the stdlib

2010-12-04 Thread Łukasz Langa
New submission from Łukasz Langa : configparser.ConfigParser is deprecated as of 3.2 and thus standard library modules should not use that. The migration path is trivial and should not introduce any compatibility problems whatsoever. All it needs is to switch usage of ConfigParser to SafeConf