[issue13378] Change the variable "nsmap" from global to instance (xml.etree.ElementTree)

2011-12-09 Thread Stefan Behnel
Stefan Behnel added the comment: Given that this is a major new feature for the serialiser in ElementTree, I think it's worth asking Fredrik for any comments. -- ___ Python tracker ___

[issue13378] Change the variable "nsmap" from global to instance (xml.etree.ElementTree)

2011-12-09 Thread Stefan Behnel
Changes by Stefan Behnel : -- nosy: +effbot ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue13571] Backup files support in IDLE

2011-12-09 Thread maniram maniram
Changes by maniram maniram : -- type: -> feature request versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue13521] Make dict.setdefault() atomic

2011-12-09 Thread maniram maniram
maniram maniram added the comment: +1 for atomic and more robust -- nosy: +maniram.maniram ___ Python tracker ___ ___ Python-bugs-lis

[issue13521] Make dict.setdefault() atomic

2011-12-09 Thread John O'Connor
Changes by John O'Connor : -- nosy: +jcon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue10364] IDLE: make .py default added extension on save

2011-12-09 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> duplicate status: open -> closed superseder: -> idle filename extension ___ Python tracker ___ ___

[issue13549] Incorrect nested list comprehension documentation

2011-12-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: Showing both was the intent of my comment. Since I am about 60:40 on that, I was and am willing for you, having grabbed and pushed the issue, to drop the half-expanded version if you thought it better. With or without, we have improved this section. But I st

[issue13571] Backup files support in IDLE

2011-12-09 Thread maniram maniram
New submission from maniram maniram : Automatically save files in IDLE's editor which are not saved to backup file(s) (perhaps in .idlerc) every minute. If IDLE crashes, save all files that are not saved to backup file(s) and then re-raise the error (like a finally statement) When IDLE detect

[issue1410680] Add 'surgical editing' to ConfigParser

2011-12-09 Thread Mathieu Pasquet
Mathieu Pasquet added the comment: What is the state of that feature, as of today? -- nosy: +mathieui ___ Python tracker ___ ___ Py

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle : it's not found as thread.lock

2011-12-09 Thread Nikita Pchelin
Nikita Pchelin added the comment: >>Are you sure you don't store the logger in your process' __init__ method? The __init__ method is called in the parent and the process instance is transfered to the child when you call start() on the process. To make sure we are on the same page, here is wha

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle : it's not found as thread.lock

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: > If I getLogger() in the child instead, example fails with the same trace. That sounds rather unlikely. Are you sure you don't store the logger in your process' __init__ method? The __init__ method is called in the parent and the process instance is transfer

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle : it's not found as thread.lock

2011-12-09 Thread Nikita Pchelin
Nikita Pchelin added the comment: Hi Antoine, * If I don't pass a logger and do print statements instead, works like a charm. * If I getLogger() in the child instead, example fails with the same trace. However, according to this ( http://docs.python.org/library/logging.html ): "The logging

[issue13570] Expose faster unicode<->ascii functions in the C-API

2011-12-09 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.

[issue13528] Rework performance FAQ

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: Done. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue13528] Rework performance FAQ

2011-12-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset eb30f2becb79 by Antoine Pitrou in branch '3.2': Issue #13528: rework the performance question in the programming FAQ http://hg.python.org/cpython/rev/eb30f2becb79 New changeset 9fe28f52eaaa by Antoine Pitrou in branch 'default': Issue #13528: rewor

[issue13378] Change the variable "nsmap" from global to instance (xml.etree.ElementTree)

2011-12-09 Thread Florent Xicluna
Florent Xicluna added the comment: Updated with documentation. Thank you for the review. I know this does not cover different namespaces in subtree. But this use case seems very specific. The user could find other means to achieve it. -- stage: patch review -> commit review Added file

[issue1757072] Zipfile robustness

2011-12-09 Thread R. David Murray
R. David Murray added the comment: Here's the patch: http://hg.python.org/cpython/rev/cc3255a707c7/ I thought I remembered getting it in to 2.7.2, but my memory is evidently wrong. It has been applied, but is not yet in the released version of 2.7. -- __

[issue13543] shlex with string ending in space gives "ValueError: No closing quotation"

2011-12-09 Thread R. David Murray
R. David Murray added the comment: And just for your information, as far as I know *no one* knows what standard (or model) non-posix mode shlex is based on. -- ___ Python tracker _

[issue13502] Documentation for Event.wait return value is either wrong or incomplete

2011-12-09 Thread R. David Murray
R. David Murray added the comment: "set to True, either before the wait call or after the wait starts" -- ___ Python tracker ___ ___

[issue13543] shlex with string ending in space gives "ValueError: No closing quotation"

2011-12-09 Thread ekorn
ekorn added the comment: https://github.com/ipython/ipython/issues/1109#issuecomment-3072571 It seems this was an IPython bug due to slight abuse of the shlex module. Closing as invalid; thanks for your help. -- resolution: -> invalid status: open -> closed __

[issue2979] use_builtin_types in xmlrpc.server

2011-12-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset b3c1a504ebc1 by Florent Xicluna in branch 'default': Closes #2979: add parameter 'use_builtin_types' to the SimpleXMLRPCServer. http://hg.python.org/cpython/rev/b3c1a504ebc1 -- nosy: +python-dev resolution: -> fixed stage: commit review ->

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle : it's not found as thread.lock

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't think it's the queue. Try removing the logger instead (or creating it in the child). -- ___ Python tracker ___ ___

[issue11886] test_time.test_tzset() fails on "x86 FreeBSD 7.2 3.x": AEST timezone called "EST"

2011-12-09 Thread Florent Xicluna
Florent Xicluna added the comment: thank you for this fix. I agree a posteriori. -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue10364] IDLE: make .py default added extension on save

2011-12-09 Thread Roger Serwy
Roger Serwy added the comment: This is a duplicate of #4832. -- nosy: +serwy ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue13570] Expose faster unicode<->ascii functions in the C-API

2011-12-09 Thread Stefan Krah
New submission from Stefan Krah : I just ran the telco benchmark ... http://www.bytereef.org/mpdecimal/quickstart.html#telco-benchmark ... on _decimal to see how the PEP-393 changes affect the module. The benchmark reads numbers from a binary file, does some calculations and prints the result

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle : it's not found as thread.lock

2011-12-09 Thread Nikita Pchelin
Nikita Pchelin added the comment: It's multiprocessing Queue: from multiprocessing import Process, Queue, Event -- ___ Python tracker ___ __

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle : it's not found as thread.lock

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: > I am not sending locks explicetly (i.e. I am not using locks), but I do > pass a Queue object from PC instance to _Consumer and _Producer instances > that get/put values from/to the queue -- this is done deliberately. Is it a Queue.Queue or a multiprocessing.

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle : it's not found as thread.lock

2011-12-09 Thread Nikita Pchelin
Nikita Pchelin added the comment: I am not sending locks explicetly (i.e. I am not using locks), but I do pass a Queue object from PC instance to _Consumer and _Producer instances that get/put values from/to the queue -- this is done deliberately. 2011/12/9 Antoine Pitrou > > Antoine Pitrou

[issue11886] test_time.test_tzset() fails on "x86 FreeBSD 7.2 3.x": AEST timezone called "EST"

2011-12-09 Thread STINNER Victor
STINNER Victor added the comment: The FreeBSD 7.2 3.x buildbot is green. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle : it's not found as thread.lock

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: Yes, Windows needs to pickle objects which are sent to (or returned from) a child process. Now you should wonder why you are sending a threading lock to the child. Are you sure this is deliberate? -- nosy: +pitrou versions: +Python 2.7, Python 3.2, Py

[issue13569] multiprocessing module: Process.start() fails with EOFError: pickle.PicklingError: Can't pickle : it's not found as thread.lock

2011-12-09 Thread Nikita Pchelin
New submission from Nikita Pchelin : I've wrote a little application that uses multiprocessing module: https://github.com/jango/PC/blob/master/pc/pc-example.py When I run it in my Linux setup, I get the expected output (Python 2.7.1+): 2011-12-09 14:16:29,014 Started Producer 0. 2011-12-09 14:16

[issue2919] Merge profile/cProfile in 3.0

2011-12-09 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue6699] IDLE: Warn user about overwriting a file that has a newer version on filesystem

2011-12-09 Thread Roger Serwy
Roger Serwy added the comment: The patch won't apply against 3.3a0 because "self.set_saved(1)" became "self.set_saved(True)" in r70054 (da7a120c0478) After correcting this minor point, the patch works as expected. -- nosy: +serwy versions: +Python 3.3

[issue13560] Add PyUnicode_DecodeLocale and PyUnicode_DecodeLocaleAndSize

2011-12-09 Thread STINNER Victor
STINNER Victor added the comment: I fixed issue #5905 (strptime fails in non-UTF locale). The fix is not enough if the locale is changed in Python. Update the patch to fix time.strftime() (if wcsftime() is not available). -- Added file: http://bugs.python.org/file23894/pyunicode_decod

[issue5905] strptime fails in non-UTF locale

2011-12-09 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue5905] strptime fails in non-UTF locale

2011-12-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8620e6901e58 by Victor Stinner in branch '3.2': Issue #5905: time.strftime() is now using the locale encoding, instead of http://hg.python.org/cpython/rev/8620e6901e58 New changeset bee7694988a4 by Victor Stinner in branch 'default': (Merge 3.2) Is

[issue13505] Bytes objects pickled in 3.x with protocol <=2 are unpickled incorrectly in 2.x

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: > > sbt, the bug is not that the encoding is inefficient. The problem is we > > cannot unpickle bytes streams from Python 3 using Python 2. > > Ah. Well you can do it using codecs.encode. Great. A bit hackish but functional and not too inefficient (50% avera

[issue13568] sqlite3 convert_date error with DATE type

2011-12-09 Thread Gianluigi Tiesi
New submission from Gianluigi Tiesi : When using the 'DATE' datatype in a sqlite3 db and type converters are enabled the function in sqlite3/dbapi2.py fails I'm not sure why sqlite3 returns something like 10-JAN-11, but the function expects a ts example: import sqlite3 d = sqlite3.connect(":

[issue13547] Clean Lib/_sysconfigdata.py and Modules/_testembed

2011-12-09 Thread Stefan Krah
Stefan Krah added the comment: Excellent, closing then. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue12567] curses implementation of Unicode is wrong in Python 3

2011-12-09 Thread STINNER Victor
STINNER Victor added the comment: > I wrote down when I set up the OpenIndiana buildbots Hum, please use the issue #13552 for curses issues on OpenIndiana/Solaris. > ... de funciones: "mvwchgat" y "wchgat" See issues #3786 and #13552 for this problem. > I installed ncurses ... I add export

[issue12567] curses implementation of Unicode is wrong in Python 3

2011-12-09 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Victor, I have these notes I wrote down when I set up the OpenIndiana buildbots. Maybe can be useful to you: (compiling from source) """ * ncurses 5.7: Instalación estándar "./configure --with-shared --without-normal --enable-widec --without-cxx-binding".

[issue1757072] Zipfile robustness

2011-12-09 Thread James C. Ahlstrom
James C. Ahlstrom added the comment: I grabbed a 2.7.2 zipfile.py, and my original comments stand. If there is a "garbage at end of file" patch, I can't find it; please provide a line number or a hint. The user at yale.edu reports that the patch works. Here is a diff of my changes. To tes

[issue13547] Clean Lib/_sysconfigdata.py and Modules/_testembed

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: None of these two files is generated under Windows (_sysconfigdata.py by design and _testembed because nobody volunteered to do it). -- ___ Python tracker ___

[issue3786] _curses, _curses_panel & _multiprocessing can't be build in 2.6b3 w/ SunStudio 12

2011-12-09 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.o

[issue13567] HTTPError interface changes / breaks depending on what was passed to constructor

2011-12-09 Thread Pami Ketolainen
Pami Ketolainen added the comment: Patch adapted to 3.3 -- Added file: http://bugs.python.org/file23893/httperror-geturl-fix-3.patch ___ Python tracker ___ _

[issue13567] HTTPError interface changes / breaks depending on what was passed to constructor

2011-12-09 Thread Pami Ketolainen
New submission from Pami Ketolainen : In case of authentication error, HTTPError gets initialized without file object and constructor of addinfourl is not called. This means that url attribute is not set and geturl() (inherited from addinfourl) raises AttributeError. geturl() is not documented

[issue12428] functools test coverage

2011-12-09 Thread Éric Araujo
Éric Araujo added the comment: Ezio and I made further minor comments that can be handled by the person doing the commit; I’d like to do it. -- nosy: +eric.araujo ___ Python tracker __

[issue13566] Array objects pickled in 3.x with protocol <=2 are unpickled incorrectly in 2.x

2011-12-09 Thread sbt
sbt added the comment: > I suggest that array.array be changed in Python 2 to allow unicode strings > as a typecode or that pickle detects array.array being called and fixes > the call. Interestingly, py3 does understand arrays pickled by py2. This appears to be because py2 pickles str usin

[issue4352] imp.find_module() fails with a UnicodeDecodeError when called with non-ASCII search paths

2011-12-09 Thread Serg Asminog
Serg Asminog added the comment: cp1251 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue1757072] Zipfile robustness

2011-12-09 Thread James C. Ahlstrom
James C. Ahlstrom added the comment: Problem was reported on 2.7. I will check in detail this weekend. Please stand by. -- ___ Python tracker ___ __

[issue13566] Array objects pickled in 3.x with protocol <=2 are unpickled incorrectly in 2.x

2011-12-09 Thread maniram maniram
maniram maniram added the comment: The problem is that pickle is calling array.array(u'i',[1,2,3]) and array.array in Python 2 doesn't allow unicode strings as a typecode (typecode is the first argument) The docs in Python 2 and Py3k doesn't specify the type of the typecode argument of array

[issue13557] exec of list comprehension fails on NameError

2011-12-09 Thread Stephan R.A. Deibel
Stephan R.A. Deibel added the comment: Ah, thanks, there it is... I thought this must be dealt with somewhere but couldn't find it. Maybe should add something to the 'exec' statement docs http://docs.python.org/py3k/library/functions.html#exec to reference this (from a usability-of-docs stan

[issue4352] imp.find_module() fails with a UnicodeDecodeError when called with non-ASCII search paths

2011-12-09 Thread STINNER Victor
STINNER Victor added the comment: Oops, it's not sys.getfilesystemencoding(), but locale.getpreferredencoding() which is interesting. Can you give me your locale encoding? -- ___ Python tracker ___

[issue4352] imp.find_module() fails with a UnicodeDecodeError when called with non-ASCII search paths

2011-12-09 Thread Serg Asminog
Serg Asminog added the comment: Also Traceback (most recent call last): File "D:\temp\python bug\test.py", line 20, in file_object, file_path, description = imp.find_module(basename, [dirname]) ImportError: No module named mymodule with python 2.6.6 (r266:84297, Aug 24 2010, 18:13:38)

[issue4352] imp.find_module() fails with a UnicodeDecodeError when called with non-ASCII search paths

2011-12-09 Thread Serg Asminog
Serg Asminog added the comment: print(sys.getfilesystemencoding()) print(os.name) print(sys.version) print(sys.version_info) print(sys.platform) - mbcs nt 3.2.2 (default, Sep 4 2011, 09:07:29) [MSC v.1500 64 bit (AMD64)] sys.version_info(major=3, minor=2, micro=2, releaselevel='final', ser

[issue13557] exec of list comprehension fails on NameError

2011-12-09 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: This is expected and documented: http://docs.python.org/py3k/reference/executionmodel.html#interaction-with-dynamic-features "Free variables are not resolved in the nearest enclosing namespace, but in the global namespace.", a free variable being a varia

[issue13549] Incorrect nested list comprehension documentation

2011-12-09 Thread Ezio Melotti
Ezio Melotti added the comment: In the first patch I included this example: + >>> swapped = [] + >>> for i in [0, 1, 2]: + ... swapped.append([row[i] for row in mat]) + ... + >>> print swapped + [[1, 4, 7], [2, 5, 8], [3, 6, 9]] Because I applied the following transformation wit

[issue2775] Implement PEP 3108

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Brett, issue 2919 had a patch that merges profile/cProfile for a while > now but nobody test it yet. > All I need it someone to download the patch, install it, test it on > some random script and tell me if it works. I don't need more. I don't see any patch

[issue13505] Bytes objects pickled in 3.x with protocol <=2 are unpickled incorrectly in 2.x

2011-12-09 Thread sbt
sbt added the comment: > sbt, the bug is not that the encoding is inefficient. The problem is we > cannot unpickle bytes streams from Python 3 using Python 2. Ah. Well you can do it using codecs.encode. Python 3.3.0a0 (default, Dec 8 2011, 17:56:13) [MSC v.1500 32 bit (Intel)] on win32 Typ

[issue13566] Array objects pickled in 3.x with protocol <=2 are unpickled incorrectly in 2.x

2011-12-09 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +alexandre.vassalotti, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue13566] Array objects pickled in 3.x with protocol <=2 are unpickled incorrectly in 2.x

2011-12-09 Thread sbt
New submission from sbt : If you pickle an array object on python 3 the typecode is encoded as a unicode string rather than as a byte string. This makes python 2 reject the pickle. # Python 3.3.0a0 (default, Dec 8 2011, 17:56:13) [MSC v.1500 32 bit (In

[issue13441] TestEnUSCollation.test_strxfrm() fails on Solaris

2011-12-09 Thread STINNER Victor
STINNER Victor added the comment: The Solaris buildbot is green, let's close it. I didn't report the bug upstream. Feel free to report it to Oracle! -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue11894] test_multiprocessing failure on "AMD64 OpenIndiana 3.x": KeyError on id_to_obj[ident] in serve_client()

2011-12-09 Thread STINNER Victor
STINNER Victor added the comment: I didn't see this failure again since the issue was opened, so I close it as invalid. -- resolution: -> invalid status: open -> closed ___ Python tracker ___

[issue13565] test_multiprocessing.test_notify_all() hangs on "AMD64 Snow Leopard 02 03.x"

2011-12-09 Thread STINNER Victor
New submission from STINNER Victor : [333/363] test_multiprocessing Timeout (1:00:00)! Thread 0x000112d0b000: File "/Users/buildbot/buildarea/3.x.parc-snowleopard-1/build/Lib/multiprocessing/connection.py", line 411 in _recv File "/Users/buildbot/buildarea/3.x.parc-snowleopard-1/build/

[issue4352] imp.find_module() fails with a UnicodeDecodeError when called with non-ASCII search paths

2011-12-09 Thread STINNER Victor
STINNER Victor added the comment: @Serg Asminog: What is your Python version? What is your locale encoding (print(sys.getfilesystemencoding())? What is your Windows version? -- ___ Python tracker _

[issue4352] imp.find_module() fails with a UnicodeDecodeError when called with non-ASCII search paths

2011-12-09 Thread Serg Asminog
Serg Asminog added the comment: dirname = 'A-Za-z\xc4\xd6\xdc\xe4\xf6\xfc\xdf' Traceback (most recent call last): File "D:\temp\python bug\test.py", line 19, in file_object, file_path, description = imp.find_module(basename, [dirname]) UnicodeEncodeError: 'mbcs' codec can't encode charac

[issue13441] TestEnUSCollation.test_strxfrm() fails on Solaris

2011-12-09 Thread STINNER Victor
STINNER Victor added the comment: I collected the locale list triggering the mbstowcs() bug thanks my previous commit: * hu_HU (ISO8859-2): character U+3020 * de_AT (ISO8859-1): character U+3076 * cs_CZ (ISO8859-2): character U+3020 * sk_SK (ISO8859-2): character U+3020 *

[issue13441] TestEnUSCollation.test_strxfrm() fails on Solaris

2011-12-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7ffe3d304487 by Victor Stinner in branch 'default': Issue #13441: Enable the workaround for Solaris locale bug http://hg.python.org/cpython/rev/7ffe3d304487 -- ___ Python tracker

[issue13563] Make use of with statement in ftplib

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: The first hunk of the patch doesn't look right: ntransfercmd() is supposed to return the connection but the "with" statement closes it. -- ___ Python tracker

[issue13550] Rewrite logging hack of the threading module

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: Tim, do you happen to know what the goal was with the threading._VERBOSE hack and the undocumented _Verbose class? -- nosy: +pitrou, tim_one ___ Python tracker __

[issue12428] functools test coverage

2011-12-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: Brian's patch looks ok to me. There's a missing newline (or two) just before test_main() but that can easily be fixed on commit. -- nosy: +pitrou stage: -> commit review versions: +Python 3.3 -Python 3.2 ___ Python

[issue13441] TestEnUSCollation.test_strxfrm() fails on Solaris

2011-12-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2a2d0872d993 by Victor Stinner in branch 'default': Issue #13441: Skip some locales (e.g. cs_CZ and hu_HU) on Solaris to workaround http://hg.python.org/cpython/rev/2a2d0872d993 -- ___ Python tracker

[issue13560] Add PyUnicode_DecodeLocale and PyUnicode_DecodeLocaleAndSize

2011-12-09 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: +skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue13547] Clean Lib/_sysconfigdata.py and Modules/_testembed

2011-12-09 Thread Stefan Krah
Stefan Krah added the comment: I guess this still needs to be fixed for Visual Studio. -- ___ Python tracker ___ ___ Python-bugs-list