[issue11075] Turtle crash with IDLE on Mac OS X 10.6

2011-02-01 Thread Alex McNerney
Alex McNerney amcnerne...@yahoo.com added the comment: Sorry to keep bothering, but running Python 2.7.1:88286 (maintenance) on ActiveState Tcl/Tk 8.5.9 causes the idle to hang when a simple script like: x = raw_input(x: ) print x is run. Is this a bug in Tcl/Tk? Looking in the logs I see

[issue4735] An error occurred during the installation of assembly

2011-02-01 Thread Mads Darø Kristensen
Mads Darø Kristensen mad...@gmail.com added the comment: I have this problem using Python 2.7.1 on a 32-bit Windows 7 PC. -- nosy: +madsdk versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4735

[issue11084] Serialization of decimal.Decimal to XML-RPC

2011-02-01 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- nosy: +mark.dickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11084 ___ ___

[issue11085] expose _abcoll as collections.abc

2011-02-01 Thread Daniel Urban
Changes by Daniel Urban urban.dani...@gmail.com: -- nosy: +durban ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11085 ___ ___ Python-bugs-list

[issue8998] add crypto routines to stdlib

2011-02-01 Thread Nick Coghlan
Changes by Nick Coghlan ncogh...@gmail.com: -- nosy: +ncoghlan ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8998 ___ ___ Python-bugs-list mailing

[issue11075] Using Turtle with IDLE on Mac OS X

2011-02-01 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Now that I looked at the documentation (http://docs.python.org/library/turtle.html), I see that it is clear that Turtle is designed to work from IDLE *but*, as is noted, when using the module from within IDLE run with the -n switch, which means run

[issue7330] PyUnicode_FromFormat segfault

2011-02-01 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I opened other tickets related to PyUnicode_FromFormatV: * #10833 :Replace %.100s by %s in PyErr_Format(): the arbitrary limit of 500 bytes is outdated * #10831: PyUnicode_FromFormatV() doesn't support %li, %lli, %zi * #10830:

[issue11088] IDLE on OS X with Cocoa Tk 8.5 can hang waiting on input / raw_input

2011-02-01 Thread Ned Deily
New submission from Ned Deily n...@acm.org: As reported by Alex McNerney in Issue11075 msg127687: ... running Python 2.7.1:88286 (maintenance) [built from source] on ActiveState Tcl/Tk 8.5.9 causes the idle to hang when a simple script like: x = raw_input(x: ) print x is run. Is this a bug

[issue11075] Using Turtle with IDLE on Mac OS X

2011-02-01 Thread Ned Deily
Ned Deily n...@acm.org added the comment: [Please don't add new topics to the same tracker issue. As David mentioned, it would be better to ask for help on one of the user lists to be sure before opening an issue. Besides the general python-list, there is an active OS X users list

[issue11022] locale.setlocale() doesn't change I/O codec, os.environ does

2011-02-01 Thread Steffen Daode Nurpmeso
Steffen Daode Nurpmeso sdao...@googlemail.com added the comment: Most of this is much too loud for a newbie who is about to read PEP 7 anyway. And if this community has chosen to try (?!?) not to break compatibility with code which does not have a notion of a locale setting (i.e. naively uses

[issue11079] Make OS X entry in Applications like that in Windows

2011-02-01 Thread Ned Deily
Ned Deily n...@acm.org added the comment: I agree that adding a link to the installed documentation set would be an improvement. Currently, the only easy way to find it is within IDLE: Help - Python Docs (or F1). I'll propose an installer patch for that for 3.2. -0.5 for removing the

[issue10227] Improve performance of MemoryView slicing

2011-02-01 Thread Stefan Behnel
Stefan Behnel sco...@users.sourceforge.net added the comment: I've extracted and fixed the part of this patch that implements the slice object cache. In particular, PySlice_Fini() was incorrectly implemented. This patch applies cleanly for me against the latest py3k branch. -- Added

[issue11075] Using Turtle with IDLE on Mac OS X

2011-02-01 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Ned: I read the bits in the turtle docs about -n as meaning *if* you use -n *then* you should set this profile option (but if you don't, things should work). I didn't go over the docs in detail, though, so maybe I'm misreading. Since

[issue11075] Using Turtle with IDLE on Mac OS X

2011-02-01 Thread Ned Deily
Ned Deily n...@acm.org added the comment: It's clear from testing it and from some searches that -n is, in fact, required. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11075 ___

[issue11079] Make OS X entry in Applications like that in Windows

2011-02-01 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I'm -0 on removing extras. Having extra's at this location makes it easier to discover them. Adding a link to the documention is a good idea, it makes the documentation easier to use without starting IDLE. Adding an uninstall option

[issue11089] ConfigParser 50x slower in 2.7

2011-02-01 Thread Vasilis
New submission from Vasilis vasilis.vlachou...@cern.ch: The ConfigParser class in 2.7 is almost 50 times slower than in the 2.6 which for large files it renders it almost unusable. Actually the speed decrease depends on the amount of the stored data Results from test program: Python 2.7

[issue11075] Using Turtle with IDLE on Mac OS X

2011-02-01 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Ah, in that case I think the docs could be improved on that point. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11075 ___

[issue10214] Misc/python-mode.el is out of date.

2011-02-01 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: Please ignore, testing roundup. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10214 ___ ___

[issue11075] Using Turtle with IDLE on Mac OS X

2011-02-01 Thread Ned Deily
Ned Deily n...@acm.org added the comment: I saw this post by Gregor: http://thread.gmane.org/gmane.comp.python.general/334881/focus=334996 I don't know applicable it still is on Windows. But it does seem to be still true on OS X. -- ___ Python

[issue11089] ConfigParser 50x slower in 2.7

2011-02-01 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- assignee: - lukasz.langa nosy: +lukasz.langa ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11089 ___

[issue11089] ConfigParser 50x slower in 2.7

2011-02-01 Thread Skip Montanaro
Changes by Skip Montanaro s...@pobox.com: -- nosy: +skip.montanaro ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11089 ___ ___ Python-bugs-list

[issue11090] Doc errors for unittest in Python 3.1

2011-02-01 Thread Michael Foord
New submission from Michael Foord mich...@voidspace.org.uk: Looks like some unittest doc changes got incorrectly backported to Python 3.1. For example the command line features using -m are new in 3.2 and don't work with 3.1:

[issue11071] What's New review comments

2011-02-01 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11071 ___ ___

[issue11049] add tests for test.support

2011-02-01 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11049 ___ ___

[issue11091] Bug with reimport in pkg_resources

2011-02-01 Thread Сергей Чупраков
New submission from Сергей Чупраков sergey...@gmail.com: import pkg_resources change path of already imported module this break google appengine because It use google.__file__ to determine sdk directory. Ubuntu 10.10 ~/lib/google_appengine$ python Python 2.6.6 (r266:84292, Sep 15 2010,

[issue11091] Bug with reimport in pkg_resources

2011-02-01 Thread Сергей Чупраков
Changes by Сергей Чупраков sergey...@gmail.com: -- components: +Build versions: +Python 2.5, Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11091 ___

[issue11091] Bug with reimport in pkg_resources

2011-02-01 Thread Сергей Чупраков
Changes by Сергей Чупраков sergey...@gmail.com: -- components: -Build ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11091 ___ ___

[issue11091] Bug with reimport in pkg_resources

2011-02-01 Thread Сергей Чупраков
Changes by Сергей Чупраков sergey...@gmail.com: -- components: +Library (Lib) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11091 ___ ___

[issue11092] Setup.cfg isn't packaged when running sdist

2011-02-01 Thread Julien Miotte
New submission from Julien Miotte miotte.jul...@gmail.com: Operating System: Ubuntu Maverick Version of Python: 2.6.6 Version of Distutils2: d355f123ac79 How to reproduce: Create a project bato with a setup.cfg, like this: [metadata] name = bato version = 1.0 Run: $ python -m distutils2.run

[issue4833] Explicit directories for zipfiles

2011-02-01 Thread Thijs Triemstra
Changes by Thijs Triemstra li...@collab.nl: -- nosy: +thijs ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4833 ___ ___ Python-bugs-list mailing

[issue11093] test_future - rename not-unittest files to redure regrtest.NOTTESTS an empty set

2011-02-01 Thread Sandro Tosi
New submission from Sandro Tosi sandro.t...@gmail.com: Hi, following up with issue10848, here's another preparatory step: - renamed test_future[12].py to future_test[12].py, to clearly identify the as not unittest files (and so facilitate the autodiscovery introduction) - adapted

[issue11093] test_future - rename not-unittest files to make regrtest.NOTTESTS an empty set

2011-02-01 Thread Sandro Tosi
Changes by Sandro Tosi sandro.t...@gmail.com: -- title: test_future - rename not-unittest files to redure regrtest.NOTTESTS an empty set - test_future - rename not-unittest files to make regrtest.NOTTESTS an empty set ___ Python tracker

[issue11091] Bug with reimport in pkg_resources

2011-02-01 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: pkg_resources is not from Python but setuptools; you probably installed it and forgot it was there. I would suggest you do your App Engine development using virtualenv to make sure that you are working in a clean environment. -- nosy:

[issue11085] expose _abcoll as collections.abc

2011-02-01 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Importlib puts all of its ABCs in importlib.abc, so at least one package has already taken this approach. I for one support the collections.abc idea. -- nosy: +brett.cannon ___ Python tracker

[issue11092] Setup.cfg isn't packaged when running sdist

2011-02-01 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: You can add it to MANIFEST.in. -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11092 ___

[issue11089] ConfigParser 50x slower in 2.7

2011-02-01 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: If OrderedDict is used, the test case quickly uses 8GB of memory. With this change (I'm not suggesting this as a fix!), the timings are normal: Index: Lib/ConfigParser.py

[issue11089] ConfigParser 50x slower in 2.7

2011-02-01 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- versions: +Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11089 ___ ___

[issue11089] ConfigParser 50x slower in 2.7

2011-02-01 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Commenting-out the ``c.set(section,item#%d%(i),str(i))`` calls shows that that is not where the problem lies for the ConfigParser() class. The issue seems confined to ConfigParser.get(). The RawConfigParser() class doesn't

[issue10918] **kwargs unnecessarily restricted in concurrent.futures 'submit' API

2011-02-01 Thread Brian Quinlan
Brian Quinlan br...@sweetapp.com added the comment: Sorry for taking so long to reply - I was on holidays until today. This is an incompatible API change (since people may be providing fn by keyword) so we should probably hold off until 3.3. I also don't really like that the signature for

[issue11094] Runtime error

2011-02-01 Thread Yelena
New submission from Yelena k...@ucdavis.edu: I've been using python to run some large database recently. I used dbfpy module to access some information stored in dbf format. However, after 20hrs of running it gave me an error of : Runtime Error! This application has requested the Runtime to

[issue11095] subprocess popen broken for bytes and backslash

2011-02-01 Thread kai zhu
New submission from kai zhu kai...@ugcs.caltech.edu: noticed when trying to call grep w/ backslashes in regexp, in shell mode. same behavior on python2.5 python3.2 in shell mode: 1. bytes is broken 2. 1st character after backslash is always silently truncated (with exception of '\\') $

[issue11095] subprocess popen broken for bytes and backslash

2011-02-01 Thread kai zhu
Changes by kai zhu kai...@ugcs.caltech.edu: -- components: +IO, Library (Lib) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11095 ___ ___

[issue11089] ConfigParser 50x slower in 2.7

2011-02-01 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Attaching a patch that fixes the algorithmic atrocities by using the Chainmap recipe: http://code.activestate.com/recipes/305268-chained-map-lookups -- keywords: +patch Added file:

[issue11075] Using Turtle with IDLE on Mac OS X

2011-02-01 Thread Alex McNerney
Alex McNerney amcnerne...@yahoo.com added the comment: Thank you so much for pointing out the -n option! Hopefully the Tk 8.5.9 input issue will be solved soon enough. Thank you both again. I'm not sure if I'm supposed to or not, but I am marking this as closed – seeing as the main issue has

[issue11075] Using Turtle with IDLE on Mac OS X

2011-02-01 Thread Alex McNerney
Alex McNerney amcnerne...@yahoo.com added the comment: solved* or rather, a workaround has been found. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11075 ___

[issue11096] Multiple turtle tracers

2011-02-01 Thread Alex McNerney
New submission from Alex McNerney amcnerne...@yahoo.com: In Python 2.7 and 2.6 (only ones I have tried), there is a bug in the turtle module's tracer() function, when applying it to multiple turtles using the same value. When two turtles are defined (to draw simultaneously), and both turtles'

[issue11075] Using Turtle with IDLE on Mac OS X

2011-02-01 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- assignee: - ned.deily resolution: - works for me stage: - committed/rejected ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11075 ___