[issue7580] distutils makefile from python.org installer doesn't work on OS X Snow Leopard

2010-05-19 Thread Greg Słodkowicz
Greg Słodkowicz added the comment: Doesn't breaking installation of packages on a major platform warrant a quicker release of a fix? -- nosy: +Greg.Slodkowicz ___ Python tracker ___

[issue8763] py3K bdist_msi wrongly installs itself in ALL python versions

2010-05-19 Thread Tarek Ziadé
Tarek Ziadé added the comment: did you use any particular option when running it ? -- nosy: +loewis ___ Python tracker ___ ___ Python-

[issue8740] infinite recursion with setfilesystemencoding and pdb

2010-05-19 Thread Christophe Combelles
Christophe Combelles added the comment: (I forgot to mention that the bug occured on python 3.1.2.) -- ___ Python tracker ___ ___ Pyth

[issue8721] urlparse.urlsplit regression in 2.7

2010-05-19 Thread Tarek Ziadé
Tarek Ziadé added the comment: Senthil: thx for the pointer. I've fixed the problem on distribute side by catching any ValueError returned by urlparse (from 2.6 or 2.7 point of view). That said, I don't think than catching more invalid URLs in Python 2.7 should be considered as a feature.

[issue8663] Failed compile in a non-ASCII path

2010-05-19 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file17342/distutils_spawn_log.patch ___ Python tracker ___ ___ Python-bugs-lis

[issue8763] py3K bdist_msi wrongly installs itself in ALL python versions

2010-05-19 Thread Pascal Chambon
Pascal Chambon added the comment: Thansk for the attention, Here it is (I ran bdist_msi with the latest SVN py3k version). -- Added file: http://bugs.python.org/file17399/RSFile-1.0.tar.gz ___ Python tracker _

[issue8733] list type and UserList do not call super in __init__ and therefore, they cannot be parents in a multiple inheritence scheme

2010-05-19 Thread Benjamin Peterson
New submission from Benjamin Peterson : Why does it matter? They both inherit from object, so there's no one to pass parameters to. -- nosy: +benjamin.peterson ___ Python tracker ___

[issue444582] Finding programs in PATH, addition to os

2010-05-19 Thread Tarek Ziadé
Tarek Ziadé added the comment: SOunds like a good feature to add in shutil, I'll check the patch and also compare it to distutils.spawn.find_executable() -- ___ Python tracker ___

[issue8763] py3K bdist_msi wrongly installs itself in ALL python versions

2010-05-19 Thread Eric Smith
Eric Smith added the comment: Could you attach the source to a small example? I don't think anyone's interested in running a random .msi file. -- nosy: +eric.smith ___ Python tracker __

[issue8759] 2.7: wrong user site directory on Linux; totally missing on OSX

2010-05-19 Thread Tarek Ziadé
Tarek Ziadé added the comment: Are you sure you didn't deactivate use site ? (by turning site.ENABLE_USER_SITE off) Please check its value: >>> import site >>> site.ENABLE_USER_SITE True Pathes look fine on my Mac : Python 2.7b2+ (trunk:81228, May 16 2010, 14:42:34) [GCC 4.0.1 (Ap

[issue8764] logging RotatingFileHandler cause too long to fininsh

2010-05-19 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> vinay.sajip nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue444582] Finding programs in PATH, addition to os

2010-05-19 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> tarek nosy: +tarek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8759] 2.7: wrong user site directory on Linux; totally missing on OSX

2010-05-19 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> tarek nosy: +ronaldoussoren, tarek priority: normal -> high ___ Python tracker ___ ___ Pyt

[issue8764] logging RotatingFileHandler cause too long to fininsh

2010-05-19 Thread davy zhang
Changes by davy zhang : -- components: +Library (Lib) type: -> performance ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue8764] logging RotatingFileHandler cause too long to fininsh

2010-05-19 Thread davy zhang
New submission from davy zhang : the function below is used to determine the proper file name of the next log file. But the question is if I set a large number of self.backupCount like 1000, it will take too long to calculate the right file name. I think it could be a better way to do this

[issue8763] py3K bdist_msi wrongly installs itself in ALL python versions

2010-05-19 Thread Pascal Chambon
New submission from Pascal Chambon : I've created a pure-python package with py3k's bdist_msi, and weirdly, even though the windows installer asks for the target directory, it installs the package in ALL python distributions installed (py26, py27 and py31), which is particularly embarassing si

[issue8721] urlparse.urlsplit regression in 2.7

2010-05-19 Thread Senthil Kumaran
Senthil Kumaran added the comment: tarek: Issue2987 has the details on changes made for ipv6 urlparse. Those can't be backported as it's a feature. I would rather like to see whats breaking in distutils2. The url which resulted in this bug in distribute: "http://www.famfamfam.com](http://www

[issue8721] urlparse.urlsplit regression in 2.7

2010-05-19 Thread Tarek Ziadé
Tarek Ziadé added the comment: I couldn't find the relevant commits, but if we didn't do it, ISTM that we should backport the fix in the next 2.6 so it behaves like in 2.7. -- nosy: +tarek ___ Python tracker _

[issue8070] Infinite loop in PyRun_InteractiveLoopFlags() if PyRun_InteractiveOneFlags() raises an error

2010-05-19 Thread Ray.Allen
Changes by Ray.Allen : -- nosy: +ysj.ray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue444582] Finding programs in PATH, addition to os

2010-05-19 Thread Christophe Simonis
Changes by Christophe Simonis : -- nosy: +Christophe Simonis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

<    1   2