Re: Guido rethinking removal of cmp from sort method

2011-04-03 Thread geremy condra
On Sat, Apr 2, 2011 at 4:01 AM, Steven D'Aprano steve+comp.lang.pyt...@pearwood.info wrote: On Fri, 01 Apr 2011 18:22:01 -0700, geremy condra wrote: [...] I don't have a horse in this race, but I do wonder how much of Python could actually survive this test. My first (uneducated) guess is not

Re: Guido rethinking removal of cmp from sort method

2011-04-03 Thread Brian Quinlan
On 3 Apr 2011, at 16:22, geremy condra wrote: I think we're talking at cross purposes. The point I'm making is that there are lots of issues where popularity as a third party module isn't really a viable test for whether a feature is sufficiently awesome to be in core python. As part of

Re: Guido rethinking removal of cmp from sort method

2011-04-03 Thread Brian Quinlan
On 3 Apr 2011, at 15:30, harrismh777 wrote: Brian Quinlan wrote: I suspect that this debate is a sink hole that I won't be able to escape from alive but... ... live long and prosper my friend. Something to consider is that OOP philosophy is technically one of the most aesthetic

Problem regarding returning list

2011-04-03 Thread sl33k
I am trying to return a list of items modified with each item also showing like the number of modifications. Returning a list of user modified items was done easily but I would also like to display the item modified by the user and the modifications of that particular item. Typical way it coould

Re: Python CPU

2011-04-03 Thread John Nagle
On 4/2/2011 9:01 PM, Steven D'Aprano wrote: There were also Forth chips, which let you run Forth in hardware. I believe they were much faster than Forth in software, but were killed by the falling popularity of Forth. The Forth chips were cute, and got more done with fewer gates than

Re: Guido rethinking removal of cmp from sort method

2011-04-03 Thread harrismh777
geremy condra wrote: Something to consider is that OOP philosophy is technically one of the most aesthetic concepts in all of computer science--- with pure functional programming (haskel, erlang) as a close second... I like how you inserted the word 'technically' in there to give this

Re: Problem regarding returning list

2011-04-03 Thread sl33k
On Apr 3, 3:12 am, sl33k ahsanbag...@gmail.com wrote: I am trying to return a list of items modified with each item also showing like the number of modifications. Returning a list of user modified items was done easily but I would also like to display the item modified by the user and the

Python users in Stavanger, Norway?

2011-04-03 Thread Austin Bingham
Hei! I'm a Python developer in Stavanger, Norway looking for other Python users/developers/etc. who might be interested in starting a local user group. Anyone interested? This group might actually evolve into a general programming/computer group, depending on the mix of people, but I think that's

Re: Python CPU

2011-04-03 Thread Carl Banks
It'd be kind of hard. Python bytecode operates on objects, not memory slots, registers, or other low-level entities like that. Therefore, in order to implement a Python machine one would have to implement the whole object system in the hardware, more or less. So it'd be possible but not too

Re: Problem regarding returning list

2011-04-03 Thread Ian Kelly
On Sun, Apr 3, 2011 at 1:12 AM, sl33k ahsanbag...@gmail.com wrote: I am trying to return a list of items modified with each item also showing like the number of modifications. Returning a list of user modified items was done easily but I would also like to display the item modified by the

amibigchurch messages

2011-04-03 Thread asif m.asif
http://123maza.com/75/offer210/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python CPU

2011-04-03 Thread Paul Rubin
John Nagle na...@animats.com writes: The Forth chips were cute, and got more done with fewer gates than almost anything else. But that didn't matter for long. Willow Garage has a custom Forth chip they use in their Ethernet cameras, but it's really a FPGA. You can order 144-core Forth

Another location of the PyGTK tutorial

2011-04-03 Thread craf
Hi. Anyone know if the pygtk tutorial that was in this direction http://www.learnpygtk.org/pygtktutorial/index.html, can be located elsewhere. Regards. Cristian -- http://mail.python.org/mailman/listinfo/python-list

Another location of the PyGTK tutorial

2011-04-03 Thread craf
Hi. Anyone know if the pygtk tutorial that was in this direction http://www.learnpygtk.org/pygtktutorial/index.html, can be located elsewhere. Regards. Cristian -- http://mail.python.org/mailman/listinfo/python-list

about Pyclutter

2011-04-03 Thread craf
Hi Does anyone know how mature is Pyclutter?. Regards Cristian Abarzúa -- http://mail.python.org/mailman/listinfo/python-list

proposal to allow to set the delimiter in str.format to something other than curly bracket

2011-04-03 Thread Alia Khouri
Hi folks, I've been using ironpython2.7 in a project, and I was generating some csharp code when i discovered that I couldn't use use str.format because the interference with the brackets-aplenty situation in csharp. In [1]: code = class {0}Model { public bool IsModel(){ return true; } } In

Re: Guido rethinking removal of cmp from sort method

2011-04-03 Thread Steven D'Aprano
On Sun, 03 Apr 2011 16:34:34 +1000, Brian Quinlan wrote: On 3 Apr 2011, at 16:22, geremy condra wrote: I think we're talking at cross purposes. The point I'm making is that there are lots of issues where popularity as a third party module isn't really a viable test for whether a feature is

Re: Another location of the PyGTK tutorial

2011-04-03 Thread Dotan Cohen
http://gitorious.org/pygtk-tutorial On Sat, Apr 2, 2011 at 19:53, craf p...@vtr.net wrote: Hi. Anyone know if the pygtk tutorial that was in this direction http://www.learnpygtk.org/pygtktutorial/index.html,  can be located elsewhere. Regards. Cristian --

Re: Another location of the PyGTK tutorial

2011-04-03 Thread Dotan Cohen
http://gitorious.org/pygtk-tutorial On Fri, Apr 1, 2011 at 21:03, craf p...@vtr.net wrote: Hi. Anyone know if the pygtk tutorial that was in this direction http://www.learnpygtk.org/pygtktutorial/index.html,  can be located elsewhere. Regards. Cristian --

Re: about Pyclutter

2011-04-03 Thread Blockheads Oi Oi
On 02/04/2011 17:54, craf wrote: Hi Does anyone know how mature is Pyclutter?. Regards Cristian Abarzúa I don't kow about mature but from http://wiki.clutter-project.org/wiki/PyClutter. WARNING: PyClutter only covers the 1.0 API, and it is going to be deprecated in favour of

Re: proposal to allow to set the delimiter in str.format to something other than curly bracket

2011-04-03 Thread Corey Richardson
On 04/03/2011 06:07 AM, Alia Khouri wrote: Hi folks, I've been using ironpython2.7 in a project, and I was generating some csharp code when i discovered that I couldn't use use str.format because the interference with the brackets-aplenty situation in csharp. Roll your own

Re: better way to do this in python

2011-04-03 Thread Mag Gam
Thanks for the responses. Basically, I have a large file with this format, Date INFO username command srcipaddress filename I would like to do statistics on: total number of usernames and who they are username and commands username and filenames unique source ip addresses unique filenames

Re: proposal to allow to set the delimiter in str.format to something other than curly bracket

2011-04-03 Thread Alia Khouri
On Apr 3, 1:53 pm, Corey Richardson kb1...@aim.com wrote: On 04/03/2011 06:07 AM, Alia Khouri wrote: Hi folks, I've been using ironpython2.7 in a project, and I was generating some csharp code when i discovered that I couldn't use use str.format because the interference with the

Re: TypeError: iterable argument required

2011-04-03 Thread eryksun ()
On Saturday, April 2, 2011 12:26:18 PM UTC-4, Νικόλαος Κούρας wrote: Hello, after inserting this line if @ in mail and comment not in (Σχολιάστε ή ρωτήστε με σχετικά, ): iam getting the following error which i dont understand

[Fwd: Re: Another location of the PyGTK tutorial]

2011-04-03 Thread craf
¡Thank you very much Dotan! Regards. Cristian - Mensaje reenviado De: Dotan Cohen dotanco...@gmail.com Para: craf p...@vtr.net Cc: Python Ingles python-list@python.org Asunto: Re: Another location of the PyGTK tutorial Fecha: Sun, 3 Apr 2011 13:40:35 +0300

[Fwd: Re: about Pyclutter]

2011-04-03 Thread craf
Thanks for the answer. Regards. Cristian - Mensaje reenviado De: Blockheads Oi Oi breamore...@yahoo.co.uk Para: python-list@python.org Asunto: Re: about Pyclutter Fecha: Sun, 03 Apr 2011 11:41:32 +0100 On 02/04/2011 17:54, craf wrote: Hi Does anyone know how mature

Re: Python CPU

2011-04-03 Thread Werner Thie
You probably heard of the infamous FORTH chips like the Harris RTX2000, or ShhBoom, which implemented a stack oriented very low power design before there were FPGAs in silicon. To my knowledge the RTX2000 is still used for space hardened application and if I search long enough I might fine the

Re: Python users in Stavanger, Norway?

2011-04-03 Thread David Boddie
On Sunday 03 April 2011 09:32, Austin Bingham wrote: I'm a Python developer in Stavanger, Norway looking for other Python users/developers/etc. who might be interested in starting a local user group. Anyone interested? This group might actually evolve into a general programming/computer

Re: Python CPU

2011-04-03 Thread John Nagle
On 4/3/2011 8:44 AM, Werner Thie wrote: You probably heard of the infamous FORTH chips like the Harris RTX2000, or ShhBoom, which implemented a stack oriented very low power design before there were FPGAs in silicon. To my knowledge the RTX2000 is still used for space hardened application and if

[ANNOUNCE] Twisted 11.0.0 Released

2011-04-03 Thread Jessica McKellar
lvh PAS MAINTENANT CHEF! CHUIS EN TRAIN DE BRANCHER LE REACTEUR On behalf of Twisted Matrix Laboratories, I am honored to announce the release of Twisted 11.0.0. Highlights include: * a new templating system in Twisted Web, twisted.web.template, derived from Divmod Nevow. * improved

Re: [Twisted-Python] [ANNOUNCE] Twisted 11.0.0 Released

2011-04-03 Thread Laurens Van Houtven
Today is indeed a very, very good day. Thanks! lvh -- http://mail.python.org/mailman/listinfo/python-list

Re: Guido rethinking removal of cmp from sort method

2011-04-03 Thread geremy condra
On Sun, Apr 3, 2011 at 3:21 AM, Steven D'Aprano steve+comp.lang.pyt...@pearwood.info wrote: On Sun, 03 Apr 2011 16:34:34 +1000, Brian Quinlan wrote: On 3 Apr 2011, at 16:22, geremy condra wrote: I think we're talking at cross purposes. The point I'm making is that there are lots of issues

Re: Python CPU

2011-04-03 Thread Nobody
On Sun, 03 Apr 2011 10:15:34 -0700, John Nagle wrote: Note that if you run out of return point stack, or parameter stack, you're stuck. So there's a hardware limit on call depth. National Semiconductor once built a CPU with a separate return point stack with a depth of 20. Big mistake.

Re: Python users in Stavanger, Norway?

2011-04-03 Thread Rafe Kettler
On Apr 3, 3:32 am, Austin Bingham austin.bing...@gmail.com wrote: Hei! I'm a Python developer in Stavanger, Norway looking for other Python users/developers/etc. who might be interested in starting a local user group. Anyone interested? This group might actually evolve into a general

Light weight IDE like pywin for os x 10.6

2011-04-03 Thread python
I have looked a while for this answer. Sorry if it right before me. I have move from Windows to os x. The thing I miss most is pywin. I know you can purchase or download full IDE's for python or even use Eclipse. I really liked the ability to switch from interactive interpreter to editor

Looking for ideas on controlling python module loading

2011-04-03 Thread Nathan Coulson
Hello, I am working on a client/server program (game) that uses C w/ an embedded python interpreter, that uses python to script what objects do in the game. (primarily a C environment) I was wondering if it is possible to control what modules get loaded (or not). perhaps by determining if the

Re: Looking for ideas on controlling python module loading

2011-04-03 Thread Chris Angelico
On Mon, Apr 4, 2011 at 10:44 AM, Nathan Coulson conat...@gmail.com wrote: Hello, I am working on a client/server program (game) that uses C w/ an embedded python interpreter, that uses python to script what objects do in the game.   (primarily a C environment) I was wondering if it is

integer multiplication

2011-04-03 Thread Eddie Tsay
Does anyone know what algorithms for integer multiplication does Python use? I am trying to compare it to those used by Sage as it seems like it takes much longer for Python to do large integer multiplication as compared to Sage (anyone know off the top of their heads?) thank you --

Re: integer multiplication

2011-04-03 Thread geremy condra
On Sun, Apr 3, 2011 at 6:20 PM, Eddie Tsay jiany...@gmail.com wrote: Does anyone know what algorithms for integer multiplication does Python use? I am trying to compare it to those used by Sage as it seems like it takes much longer for Python to do large integer multiplication as compared to

Re: integer multiplication

2011-04-03 Thread geremy condra
On Sun, Apr 3, 2011 at 6:41 PM, Eddie Tsay jiany...@gmail.com wrote: On Sun, Apr 3, 2011 at 6:33 PM, geremy condra debat...@gmail.com wrote: On Sun, Apr 3, 2011 at 6:20 PM, Eddie Tsay jiany...@gmail.com wrote: Does anyone know what algorithms for integer multiplication does Python use? I

string to path problem

2011-04-03 Thread ecu_jon
i am writing a basic backup program for my school. so they wanted the possibility to be able to set source/destination from a config file. my source/destination was fine before, i would build it up with functions, like 1 that got the user-name, and put it all together with os.path.join. but if

Re: string to path problem

2011-04-03 Thread Chris Rebert
On Sun, Apr 3, 2011 at 8:30 PM, ecu_jon hayesjd...@yahoo.com wrote: i am writing a basic backup program for my school. so they wanted the possibility to be able to set source/destination from a config file. my source/destination was fine before, i would build it up with functions, like 1 that

Re: string to path problem

2011-04-03 Thread ecu_jon
On Apr 4, 12:17 am, Chris Rebert c...@rebertia.com wrote: On Sun, Apr 3, 2011 at 8:30 PM, ecu_jon hayesjd...@yahoo.com wrote: i am writing a basic backup program for my school. so they wanted the possibility to be able to set source/destination from a config file. my source/destination was

Re: proposal to allow to set the delimiter in str.format to something other than curly bracket

2011-04-03 Thread Terry Reedy
On 4/3/2011 6:07 AM, Alia Khouri wrote: Hi folks, I've been using ironpython2.7 in a project, and I was generating some csharp code when i discovered that I couldn't use use str.format because the interference with the brackets-aplenty situation in csharp. In [1]: code = class {0}Model {

Re: Guido rethinking removal of cmp from sort method

2011-04-03 Thread Terry Reedy
On 4/3/2011 1:26 AM, harrismh777 wrote: Very interesting. Your explanations (and other excellent contributions here) have shown an intense variation of diversity of viewpoint within at least the comp.lang. community with regard to the Python language. If you really want to see variation of

using python to post data to a form

2011-04-03 Thread Littlefield, Tyler
Hello: I have some data that needs to be fed through a html form to get validated and processed and the like. How can I use python to send data through that form, given a specific url? the form says it uses post, but Im not really sure what the difference is. would it just be:

Re: integer multiplication

2011-04-03 Thread Paul Rubin
geremy condra debat...@gmail.com writes: Does anyone know what algorithms for integer multiplication does Python use? I am trying to compare it to those used by Sage as it seems like it takes much longer for Python to do large integer multiplication as compared to Sage (anyone know off the top

[issue8269] Missing return values for PyUnicode C/API functions

2011-04-03 Thread Torsten Becker
Torsten Becker torsten.bec...@gmail.com added the comment: Hi, I read through unicodeobject.c and added the (IMO) proper reference counts to the missing functions. I attached a first patch which adds this to Doc/data/refcounts.dat. The patch also fixes 2 minor glitches in

[issue11743] Rewrite PipeConnection and Connection in pure Python

2011-04-03 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: Nothing jumps out at me at initial review; I've asked other contributors/interested parties to take a look too. Thanks a ton Antoine for doing this work -- ___ Python tracker rep...@bugs.python.org

[issue11745] idlelib/PyShell.py: incorrect module name reported in error message: Tkinter should be tkinter

2011-04-03 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: I'm going to reject this, thanks anyway for the patch! -- resolution: - invalid stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue10712] 2to3 fixer for deprecated unittest method names

2011-04-03 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Should this still go to the sandbox? and if so, what is the right sandbox? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10712 ___

[issue2650] re.escape should not escape underscore

2011-04-03 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Georg, do you think a versionchanged note should be added for this? The change is minor and the patch updates the documentation to reflect the change. -- ___ Python tracker

[issue11282] 3.3 unittest document not kept consist with code

2011-04-03 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 1fd736395df3 by Ezio Melotti in branch '3.2': #11282: the fail* methods will stay around a few more versions. http://hg.python.org/cpython/rev/1fd736395df3 New changeset 110bb604bc2f by Ezio Melotti in branch 'default': #11282:

[issue5863] bz2.BZ2File should accept other file-like objects. (issue4274045)

2011-04-03 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 2cb07a46f4b5 by Antoine Pitrou in branch 'default': Issue #5863: Rewrite BZ2File in pure Python, and allow it to accept http://hg.python.org/cpython/rev/2cb07a46f4b5 -- nosy: +python-dev

[issue5863] bz2.BZ2File should accept other file-like objects. (issue4274045)

2011-04-03 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Thank you very much, Nadeem. The patch is now in. -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue1625] bz2.BZ2File doesn't support multiple streams

2011-04-03 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: The patch here is totally out of date, following issue5863. -- nosy: +nvawda stage: patch review - needs patch versions: +Python 3.3 -Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue9424] Deprecate assertEquals, assertNotEquals, assert_, assertAlmostEquals, assertNotAlmostEquals

2011-04-03 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: The fail* methods and assertDictContainsSubset will be in 3.3 too, see #11282. There is no version planned for their removal yet. assertSameElements is gone from 3.3. -- ___ Python tracker

[issue7311] Bug on regexp of HTMLParser

2011-04-03 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- assignee: - ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7311 ___ ___

[issue11744] re.LOCALE doesn't reflect locale.setlocale(...)

2011-04-03 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: I don't know what re is doing with respect to locale, but I do know that the implementation of string.letters is at least somewhat broken in 2.x. It has no useful meaning in unicode, which is why it doesn't exist in 3.x. A standard

[issue11746] ssl library load_cert_chain cannot use elliptic curve type private key

2011-04-03 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11746 ___ ___ Python-bugs-list

[issue11743] Rewrite PipeConnection and Connection in pure Python

2011-04-03 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: The patch slows down Pipe() a bit, by the way. On my machine, each message sent and received has an additional 10µs overhead. See attached benchmark script. -- Added file: http://bugs.python.org/file21515/mpconn.patch

[issue11743] Rewrite PipeConnection and Connection in pure Python

2011-04-03 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: The patch slows down Pipe() a bit, by the way. On my machine, each message sent and received has an additional 10µs overhead. See attached benchmark script. -- Added file: http://bugs.python.org/file21516/pipebench.py

[issue11743] Rewrite PipeConnection and Connection in pure Python

2011-04-03 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Woops, sorry for the duplicates... -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11743 ___ ___

[issue11743] Rewrite PipeConnection and Connection in pure Python

2011-04-03 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: Removed file: http://bugs.python.org/file21515/mpconn.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11743 ___

[issue11743] Rewrite PipeConnection and Connection in pure Python

2011-04-03 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- Removed message: http://bugs.python.org/msg132847 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11743 ___

[issue11748] test_ftplib failure in test for source_address

2011-04-03 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: See http://www.python.org/dev/buildbot/all/builders/x86%20XP-5%203.x/builds/2475/steps/test/logs/stdio test test_ftplib failed -- Traceback (most recent call last): File D:\Buildslave\3.x.moore-windows\build\lib\test\test_ftplib.py, line

[issue11744] re.LOCALE doesn't reflect locale.setlocale(...)

2011-04-03 Thread Vlastimil Brom
Vlastimil Brom vlastimil.b...@gmail.com added the comment: Thanks for the comment for string.letters and further reference. Given, that Mr. Barnett mentioned in his tracker to regex ( http://code.google.com/p/mrab-regex-hg/issues/detail?id=6 ), that he only supports the LOCALE flag because of

[issue11749] test_socket failure

2011-04-03 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: http://www.python.org/dev/buildbot/all/builders/x86%20XP-5%203.x/builds/2473/steps/test/logs/stdio == FAIL: testSmallReadNonBlocking

[issue11748] test_ftplib failure in test for source_address

2011-04-03 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: 10048 is errno.EADDRINUSE. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11748 ___ ___

[issue11746] ssl library load_cert_chain cannot use elliptic curve type private key

2011-04-03 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 88ed3de28520 by Antoine Pitrou in branch '3.2': Issue #11746: Fix SSLContext.load_cert_chain() to accept elliptic curve private keys. http://hg.python.org/cpython/rev/88ed3de28520 New changeset c11e05a60d36 by Antoine Pitrou in

[issue11746] ssl library load_cert_chain cannot use elliptic curve type private key

2011-04-03 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Committed, thank you. -- resolution: - fixed stage: - committed/rejected status: open - closed versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11746

[issue8252] add a metadata section in setup.cfg

2011-04-03 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- dependencies: -update mkpkg to latest coding standards ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8252 ___

[issue8252] add a metadata section in setup.cfg

2011-04-03 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: This was finished by Tarek and other people some months ago. -- resolution: accepted - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue8591] update mkpkg to latest coding standards

2011-04-03 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: FYI, the mkcfg module has seen a lot of change since last summer, some of which have bad style. I still have this bug on my todo list to fix that. -- ___ Python tracker rep...@bugs.python.org

[issue8253] add a resource+files section in setup.cfg

2011-04-03 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: This is now done thanks to Tarek and sprinters. -- dependencies: -update mkpkg to latest coding standards resolution: accepted - fixed stage: needs patch - committed/rejected status: open - closed ___

[issue2771] Test issue

2011-04-03 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Testing -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___ ___ Python-bugs-list

[issue11748] test_ftplib failure in test for source_address

2011-04-03 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: http://hg.python.org/cpython/rev/8a2d848244a2 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11748 ___

[issue11282] 3.3 unittest document not kept consist with code

2011-04-03 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11282 ___

[issue11743] Rewrite PipeConnection and Connection in pure Python

2011-04-03 Thread s7v7nislands
Changes by s7v7nislands s7v7nisla...@gmail.com: -- nosy: +s7v7nislands ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11743 ___ ___

[issue7311] Bug on regexp of HTMLParser

2011-04-03 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Here's a patch that matches unquoted attribute values according to the HTML5 specifications. The regex uses \s even if this includes the \v char that, according to the HTML5 specs, shouldn't be included. I left it there for simplicity

[issue8252] add a metadata section in setup.cfg

2011-04-03 Thread Shashwat Anand
Changes by Shashwat Anand anand.shash...@gmail.com: -- nosy: -l0nwlf ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8252 ___ ___ Python-bugs-list

[issue8253] add a resource+files section in setup.cfg

2011-04-03 Thread Shashwat Anand
Changes by Shashwat Anand anand.shash...@gmail.com: -- nosy: -l0nwlf ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8253 ___ ___ Python-bugs-list

[issue4487] Add utf8 alias for email charsets

2011-04-03 Thread Shashwat Anand
Changes by Shashwat Anand anand.shash...@gmail.com: -- nosy: -l0nwlf ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4487 ___ ___ Python-bugs-list

[issue5863] bz2.BZ2File should accept other file-like objects. (issue4274045)

2011-04-03 Thread Oliver Deppert
Oliver Deppert oliver.depp...@stud.tu-darmstadt.de added the comment: Hi, thanks for the patch. Could you also publish a version for older python 2.x ? regards, Olli -- nosy: +Kontr-Olli ___ Python tracker rep...@bugs.python.org

[issue5863] bz2.BZ2File should accept other file-like objects. (issue4274045)

2011-04-03 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: As a new feature, this can’t go into older versions. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5863 ___

[issue9424] Deprecate assertEquals, assertNotEquals, assert_, assertAlmostEquals, assertNotAlmostEquals

2011-04-03 Thread Raymond Hettinger
Raymond Hettinger raymond.hettin...@gmail.com added the comment: It probably would have been okay to remove assertDictContainsSubset which had nearly zero uptake (according to Google's code search). That's probably because it addresses an uncommon use case, because it was only recently

[issue11750] Mutualize win32 functions

2011-04-03 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: subprocess and multiprocessing both have their own private modules for wrappers of win32 functions: Modules/_multiprocessing/win32_functions.c and PC/_subprocess.c. It would be nice to group them in a common module (_win32?) that could be

[issue11751] Increase distutils/filelist test coverage

2011-04-03 Thread Justin Love
New submission from Justin Love pyt...@justinlove.name: Increase test coverage of distutils/filelist.py from 49% to 100%. One line was marked as excluded because it was a this cannot happen error, and I agreed. -- components: Tests files:

[issue11751] Increase distutils/filelist test coverage

2011-04-03 Thread Joel Luellwitz
Changes by Joel Luellwitz evilj...@linux.com: -- versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11751 ___ ___

[issue10496] import site failed when Python can't find home directory

2011-04-03 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo, haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10496 ___ ___

[issue11752] Gungor Basa wants to stay in touch on LinkedIn

2011-04-03 Thread gungor
New submission from gungor gungorb...@gmail.com: LinkedIn Python, I'd like to add you to my professional network on LinkedIn. - Gungor Basa Gungor Basa Computer Engineer at CYMSOFT Turkey Confirm that you know Gungor Basa

[issue11751] Increase distutils/filelist test coverage

2011-04-03 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- assignee: - tarek components: +Distutils -Tests nosy: +eric.araujo, tarek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11751 ___

[issue11752] Gungor Basa wants to stay in touch on LinkedIn

2011-04-03 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: -gungorbasa resolution: - invalid stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11752

[issue11753] test_sendall_interrupted() of test_socket hangs on FreeBSD

2011-04-03 Thread STINNER Victor
New submission from STINNER Victor victor.stin...@haypocalc.com: I added a timeout of 30 minutes to regrtest. On x86 FreeBSD 7.2 3.x and x86 FreeBSD 3.x buildbot, test_sendall_interrupted() of test_socket does timeout after 30 minutes: -- ... [201/354] test_socket Thread 0x28401040:

[issue8905] difflib should accept arbitrary line iterators

2011-04-03 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: A quick look at the code doesn’t immediately tells me that difflib accepts sequences, not only lists. I’m not sure iterators are accepted too. What specific functions or methods have you found too strict? -- stage: needs patch - test

[issue11742] Possible bug in Python/import.c

2011-04-03 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Thanks for the report, but this has been fixed in the code repo. -- nosy: +brett.cannon resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org

[issue4709] Mingw-w64 and python on windows x64

2011-04-03 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4709 ___ ___

[issue11754] Changed test to check calculated constants in test_string.py

2011-04-03 Thread Lynne Qu
New submission from Lynne Qu lynne...@gmail.com: Changed test to check calculated constants in test_string.py -- components: Tests files: test_calculated_constants.diff keywords: patch messages: 132874 nosy: Lynne.Qu priority: normal severity: normal status: open title: Changed test to

[issue11752] Gungor Basa wants to stay in touch on LinkedIn

2011-04-03 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- Removed message: http://bugs.python.org/msg132870 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11752 ___

[issue11752] Gungor Basa wants to stay in touch on LinkedIn

2011-04-03 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: Removed file: http://bugs.python.org/file21519/unnamed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11752 ___

  1   2   >