[issue2531] float compared to decimal is silently incorrect.

2010-01-24 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Stefan: the problem is backwards compatibility. In 2.6 it's possible to sort a heterogeneous list that contains both Decimal instances and floats. The resulting order may not be particularly meaningful, but for some applications that

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2010-01-24 Thread Johannes Schönberger
New submission from Johannes Schönberger j...@icoost.com: I would suggest to make SimpleXMLRPCServer.SimpleXMLRPCServer.register_function a decorator function. See the attached file for the solution I wrote (l.209-240), which also works with the current syntax: @server.register_function

[issue7764] Doc for itertools recipe consume is complicated and less efficient

2010-01-24 Thread Muhammad Alkarouri
Muhammad Alkarouri malkaro...@gmail.com added the comment: Excellent solution and comments. Many thanks. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7764 ___

[issue7770] sin/cos function in decimal-docs

2010-01-24 Thread Johannes Schönberger
New submission from Johannes Schönberger j...@icoost.com: Unfortunately the sin/cos function in the decimal docs seems to return false results. In [33]: sin(decimal.Decimal('75')) Out[33]: Decimal('0.377879483645203210442266845614') In [34]: sin(decimal.Decimal('76')) Out[34]:

[issue7770] sin/cos function in decimal-docs

2010-01-24 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +mark.dickinson priority: - normal stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7770 ___

[issue7770] sin/cos function in decimal-docs

2010-01-24 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: I think that recipe is meant more as a simple example of what's possible than as a bullet-proof library function. Can you suggest changes that would improve accuracy while also keeping the recipe clear and simple? The usual method for

[issue3754] minimal cross-compilation support for configure

2010-01-24 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: system python has to be at least revision 77704 (trunk) -- Added file: http://bugs.python.org/file15987/python-trunk-20100124-CROSS.patch ___ Python tracker rep...@bugs.python.org http

[issue3871] cross and native build of python for mingw32 with distutils

2010-01-24 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: system python has to be at least revision 77704 (trunk) -- Added file: http://bugs.python.org/file15988/python-trunk-20100124-MINGW.patch ___ Python tracker rep...@bugs.python.org http

[issue7770] sin/cos function in decimal-docs

2010-01-24 Thread Johannes Schönberger
Johannes Schönberger j...@icoost.com added the comment: This is the version I would suggest and which is quite accurate unless the numbers get extremely large. def sin(x): Return the sine of x as measured in radians. print sin(Decimal('0.5')) 0.4794255386042030002732879352

[issue7770] sin/cos function in decimal-docs

2010-01-24 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Hmm. Isn't sine periodic with period 2*pi, not pi? I'd also suggest making use of remainder_near. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7770

[issue7770] sin/cos function in decimal-docs

2010-01-24 Thread Johannes Schönberger
Johannes Schönberger j...@icoost.com added the comment: stupid, it is much better to just use the modulo operator. The same works with cos... def sin(x): Return the sine of x as measured in radians. print sin(Decimal('0.5')) 0.4794255386042030002732879352 print sin(0.5)

[issue7770] sin/cos function in decimal-docs

2010-01-24 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Johannes: note that the reduction needs to be by 2*pi, not pi. The remainder_near method is slightly better than the modulo operator here: remainder_near reduces to the range [-pi, pi], while the modulo operator reduces to the range (-2*pi,

[issue7768] raw_input should encode unicode prompt with std.stdout.encoding.

2010-01-24 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: I agree that would be nice, but it's usefulness would also be limited by the fact that raw_input always returns a normal string. -- nosy: +benjamin.peterson priority: - normal ___ Python

[issue3754] minimal cross-compilation support for configure

2010-01-24 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- keywords: +needs review priority: - normal stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3754 ___

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2010-01-24 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: Can you submit your patch as a unified diff -- it's not easy to tell where you made changes to that file. Can you also include tests showing how this is used, especially using register_function in both the old way and the new way you propose?

[issue7759] mhlib fails on Btrfs filesystem (test_mhlib failure)

2010-01-24 Thread Neil Schemenauer
Neil Schemenauer nas-pyt...@arctrix.com added the comment: On Sun, Jan 24, 2010 at 01:25:18AM +, Antoine Pitrou wrote: That wasn't really my question. What I ask is: since mhlib is deprecated, why do we need to fix it while people are encouraged to use mailbox instead? Sorry, I don't

[issue3871] cross and native build of python for mingw32 with distutils

2010-01-24 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- keywords: +needs review priority: - normal stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3871 ___

[issue7759] mhlib fails on Btrfs filesystem (test_mhlib failure)

2010-01-24 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Sorry, I don't understand what you are proposing. Do you mean we should just let the test fail for people who develop on HFS+ and Btrfs filesystems? That seems not so good. Hmm, you are right. From a quick glance, the patch looks ok. I assume

[issue7759] mhlib fails on Btrfs filesystem (test_mhlib failure)

2010-01-24 Thread Chris Withers
Changes by Chris Withers ch...@simplistix.co.uk: -- nosy: -cjw296 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7759 ___ ___ Python-bugs-list

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2010-01-24 Thread Johannes Schönberger
Johannes Schönberger j...@icoost.com added the comment: I'm not very used to working with bug/issue trackers, is there any tutorial here, where this is explained? I did the stuff you asked me to do: diff: http://paste.pocoo.org/compare/169357/169359/ test: http://paste.pocoo.org/show/169360/

[issue1729305] test_doctest fails when run in verbose mode

2010-01-24 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: The patch did not work with latest trunk. Here is an updated version of the patch. Patch tested with different commands: ~ $ ./python -m test.regrtest test_doctest ~ $ ./python -m test.regrtest -v test_doctest ~ $ ./python -m test.regrtest -v

[issue1729305] test_doctest fails when run in verbose mode

2010-01-24 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: And for Python 3. (Slightly different) -- stage: - patch review Added file: http://bugs.python.org/file15991/issue1729305_doctest_py3k.diff ___ Python tracker rep...@bugs.python.org

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2010-01-24 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: http://www.python.org/dev/workflow/ and http://python.org/dev/faq/ should help you get started. The workflow doc will let you know what the process is around here. The FAQ will tell you how to setup Subversion, how to make a diff, etc. With that

[issue7764] dictview

2010-01-24 Thread Jan Kaliszewski
Changes by Jan Kaliszewski z...@chopin.edu.pl: -- title: Doc for itertools recipe consume is complicated and less efficient - dictview versions: -Python 2.6, Python 2.7, Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue7764] Doc for itertools recipe consume is complicated and less efficient

2010-01-24 Thread Jan Kaliszewski
Changes by Jan Kaliszewski z...@chopin.edu.pl: -- title: dictview - Doc for itertools recipe consume is complicated and less efficient ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7764 ___

[issue7764] Doc for itertools recipe consume is complicated and less efficient

2010-01-24 Thread Jan Kaliszewski
Jan Kaliszewski z...@chopin.edu.pl added the comment: (sorry! typed into a wrong field) -- nosy: +zuo versions: +Python 2.6, Python 2.7, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7764

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2010-01-24 Thread Johannes Schönberger
Johannes Schönberger j...@icoost.com added the comment: OK, thank you for the links! Do you still want me to do anything (like test cases etc.)? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7769

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2010-01-24 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: Once you get a Subversion checkout of the source, have a look in Lib/test/test_xmlrpc.py for examples of how things are currently tested (using unittest). Once you get a feel for it, add new tests for what your changes do. The file you paste'd

[issue7771] dict view comparison methods are not documented

2010-01-24 Thread Jan Kaliszewski
New submission from Jan Kaliszewski z...@chopin.edu.pl: Dictionary views documentation (e.g. http://docs.python.org/3.1/library/stdtypes.html#dictionary-view-objects) contains nothing about comparison ( = = == !=) operations. -- assignee: georg.brandl components: Documentation

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2010-01-24 Thread Johannes Schönberger
Johannes Schönberger j...@icoost.com added the comment: OK, will work on it and reply as soon as I have results! -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7769 ___

[issue7764] Doc for itertools recipe consume is complicated and less efficient

2010-01-24 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: Changeset r77721 should be ported to trunk, and py3k probably. -- nosy: +flox status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7764

[issue7269] buildbot occasional DBFileExistsError failures in test_bsddb3

2010-01-24 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: It may occur on any platform. The patch fixes the issue. -- title: Windows buildbot occasional DBFileExistsError failures in test_bsddb3 - buildbot occasional DBFileExistsError failures in test_bsddb3

[issue7772] test_py3kwarn fails when running the whole test suite

2010-01-24 Thread Florent Xicluna
New submission from Florent Xicluna la...@yahoo.fr: test_py3kwarn fails when running the whole test suite This is a known behaviour, because of extension modules loaded by previous tests (which cannot be reloaded). However, the warnings module store all the warnings when they appear in a

[issue7772] test_py3kwarn fails when running the whole test suite

2010-01-24 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: Here comes the patch: - use test_support.__warningregistry__ to check past warnings - filter the warnings with (module|package), to be sure that they are silenced by test_support.import_module - fix test_reduce_move (it failed when run after

[issue7713] implement ability to disable automatic search path additions

2010-01-24 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7713 ___

[issue7772] test_py3kwarn fails when running the whole test suite

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: -- nosy: +ncoghlan ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7772 ___ ___ Python-bugs-list mailing

[issue7770] sin/cos function in decimal-docs

2010-01-24 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: I'll look at it when I get a chance. Want to continue to show how the same recipe can work for different input types. I may just document the function's range of inputs. -- assignee: georg.brandl - rhettinger

[issue7764] Doc for itertools recipe consume is complicated and less efficient

2010-01-24 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Remain calm. I left the status as Open for a reason. When I'm satisfied that people are reacting well to the new update, will port to other versions. -- ___ Python tracker

[issue7770] sin/cos function in decimal-docs

2010-01-24 Thread Johannes Schönberger
Johannes Schönberger j...@icoost.com added the comment: This adds two further lines, so you can pass int's, float's or Decimal types to the function. def sin(x): Return the sine of x as measured in radians. print sin(Decimal('0.5')) 0.4794255386042030002732879352 print

[issue7770] sin/cos function in decimal-docs

2010-01-24 Thread Johannes Schönberger
Johannes Schönberger j...@icoost.com added the comment: sorry, forgot the str: def rsin(x): Return the sine of x as measured in radians. print sin(Decimal('0.5')) 0.4794255386042030002732879352 print sin(0.5) 0.479425538604 print sin(0.5+0j) (0.479425538604+0j)

[issue7773] platform._parse_release_file() can cause UnboundLocalError

2010-01-24 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: When the release file doesn't contain some data, then platform._parse_release_file() causes UnboundLocalError. I'm attaching the patch to fix it. $ python2.7 -c 'import platform; platform._parse_release_file()'

[issue7773] platform._parse_release_file() can cause UnboundLocalError

2010-01-24 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +lemburg ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7773 ___

[issue7771] dict view comparison methods are not documented

2010-01-24 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti priority: - normal stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7771 ___

[issue7347] Add {Create|Delete}KeyEx to _winreg, doc and test updates

2010-01-24 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: After looking into this again, the testing situations are much different than I had originally written. Some of the tests aren't really valid exercises. For one, the querying/enabling/disabling of reflection keys aren't good tests as they aren't

[issue7269] buildbot occasional DBFileExistsError failures in test_bsddb3

2010-01-24 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Fixed in r77733 (trunk) and r77734 (release26-maint), thanks for the patch! -- assignee: jcea - ezio.melotti nosy: +ezio.melotti resolution: - fixed stage: patch review - committed/rejected status: open - closed

[issue4570] Bad example in set tutorial

2010-01-24 Thread John Marter
John Marter jmar...@gmail.com added the comment: I see that the spelling of banana has been fixed but what is the purpose of assigning fruit and then immediately reassigning it another value without even looking at the first assignment? fruit = ['apple', 'orange', 'apple', 'pear', 'orange',

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: Removed file: http://bugs.python.org/file15928/issue7092_filterwarnings_v2.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7092 ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: Removed file: http://bugs.python.org/file15929/issue7092_syntax_imports_v2.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7092 ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: Removed file: http://bugs.python.org/file15788/issue7092_check_warnings.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7092 ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: Added file: http://bugs.python.org/file15994/issue7092_syntax_imports_v3.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7092 ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: Added file: http://bugs.python.org/file15995/issue7092_check_warnings_v3.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7092 ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: Re-uploaded after fixes for #7737. To remove all -3 warnings: - apply the 4 patches - fix SQLite buffer() warnings (issue #7223) -- stage: committed/rejected - patch review Added file:

[issue4570] Bad example in set tutorial

2010-01-24 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: Confirmed in trunk and 3.1 -- nosy: +flox resolution: fixed - stage: - needs patch status: closed - open versions: +Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue7773] platform._parse_release_file() can cause UnboundLocalError

2010-01-24 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: An accompanying test would be wonderful. -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7773 ___

[issue7774] subprocess executable option wrong location

2010-01-24 Thread Tarek Ziadé
New submission from Tarek Ziadé ziade.ta...@gmail.com: test_subprocess.test_executable now has a failure in the subprocess created (see http://www.python.org/dev/buildbot/builders/amd64%20gentoo%20trunk/builds/303/steps/test/logs/stdio) the bbots don't get red because this is happening in the

[issue7774] subprocess executable option wrong location

2010-01-24 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: Notice that this happen only under Linux and Solaris AFAIK. I couldn't reproduce it under Mac OS X -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7774

[issue7774] subprocess executable option wrong location

2010-01-24 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7774 ___

[issue7774] subprocess executable option wrong location

2010-01-24 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: Confirmed on all Python versions. Same behaviour without subprocess: ~ $ sh -c exec -a missingfile python -c 'import sys; print sys.executable' /home/name/ -- nosy: +flox ___ Python tracker

[issue7774] subprocess executable option wrong location

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: -- versions: +Python 2.5, Python 2.6, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7774 ___

[issue7774] sys.executable: wrong location if zeroth command argument is modified.

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: -- title: subprocess executable option wrong location - sys.executable: wrong location if zeroth command argument is modified. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7774

[issue7764] Doc for itertools recipe consume is complicated and less efficient

2010-01-24 Thread Muhammad Alkarouri
Muhammad Alkarouri malkaro...@gmail.com added the comment: Mea culpa. Not knowing the conventions here, I closed the ticket, which probably resulted in florent's feedback. I will leave you to it then. -- ___ Python tracker rep...@bugs.python.org

[issue7774] sys.executable: wrong location if zeroth command argument is modified.

2010-01-24 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: I'm not the subprocess owner Tarek :( -- assignee: jnoller - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7774 ___

[issue7773] platform._parse_release_file() can cause UnboundLocalError

2010-01-24 Thread Meador Inge
Meador Inge mead...@gmail.com added the comment: Updated the patch to add a test case in 'test_platform'. I also added a comment explaining the change and removed a redundant assignment. -- nosy: +minge Added file: http://bugs.python.org/file15997/issue-7773.patch

[issue4570] Bad example in set tutorial

2010-01-24 Thread Raymond Hettinger
Changes by Raymond Hettinger rhettin...@users.sourceforge.net: -- assignee: georg.brandl - rhettinger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4570 ___

[issue7773] platform._parse_release_file() can cause UnboundLocalError

2010-01-24 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- keywords: +needs review priority: - normal stage: - patch review type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7773 ___

[issue7773] platform._parse_release_file() can cause UnboundLocalError

2010-01-24 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Thanks for the patch! Applied in r77735. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7773

[issue7775] str.rpartition(sep) - (tail, sep, head)

2010-01-24 Thread kai zhu
Changes by kai zhu kaizhu...@gmail.com: -- assignee: georg.brandl components: Documentation nosy: georg.brandl, kaizhu severity: normal status: open title: str.rpartition(sep) - (tail, sep, head) versions: Python 3.1 ___ Python tracker

[issue7776] httplib.py: ._tunnel() broken

2010-01-24 Thread Cameron Simpson
New submission from Cameron Simpson c...@zip.com.au: I'm trying to do HTTPS via a proxy in Python 2.6.4 (which is supposed to incorporate this fix from issue 1424152). While trying to debug this starting from the suds library I've been reading httplib.py and urllib2.py to figure out what's

[issue7776] httplib.py: ._tunnel() broken

2010-01-24 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- nosy: +brian.curtin priority: - normal stage: - test needed versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7776

[issue7615] unicode_escape codec does not escape quotes

2010-01-24 Thread Richard Hansen
Richard Hansen rhan...@bbn.com added the comment: Any comments on the patches? I'd love to see at least patches 1-3 make it into Python 2.7. :) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7615

[issue7776] httplib.py: ._tunnel() broken

2010-01-24 Thread Cameron Simpson
Cameron Simpson c...@zip.com.au added the comment: Amendment: regarding the infinite regress, it looks like there will not be a recursion if the caller leaps straight to the .connect() method. However, if they do that then the call to _tunnel() from within connect() will happen _after_ the

[issue7776] httplib.py: ._tunnel() broken

2010-01-24 Thread Senthil Kumaran
Changes by Senthil Kumaran orsent...@gmail.com: -- assignee: - orsenthil nosy: +orsenthil ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7776 ___

[issue7775] str.rpartition(sep) - (tail, sep, head)

2010-01-24 Thread Chris Withers
New submission from Chris Withers ch...@simplistix.co.uk: Can you please provide information about the actual problem you're reporting? -- nosy: +cjw296 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7775

[issue7776] httplib.py: ._tunnel() broken

2010-01-24 Thread Cameron Simpson
Cameron Simpson c...@zip.com.au added the comment: It's looking like I have my idea of .host versus ._tunnel_host swapped. I think things are still buggy, but my interpretation of the bug is wrong or misleading. I gather that after _set_tunnel(), .host is the proxy host and that ._tunnel_host

[issue7621] Test issue

2010-01-24 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- nosy: +loewis ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7621 ___ ___ Python-bugs-list

[issue7621] Test issue

2010-01-24 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Generate a message. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7621 ___ ___

[issue7621] Test issue

2010-01-24 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Generate a message. Reply to it. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7621 ___

[issue7777] Support needed for AF_RDS family

2010-01-24 Thread Andrew Grover
New submission from Andrew Grover andy.gro...@gmail.com: RDS is a reliable datagram protocol used by Oracle clusters for inter-process communication. It is in the Linux kernel, and has a defined address family number. Its use is identical to UDP, except the address family is 21, and the type

[issue7777] Support needed for AF_RDS family

2010-01-24 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: A patch has good chances of getting accepted (eventually; it may take several months or years). Test cases and documentation changes should be included. Supporting generic socket addresses can't work (IMO): how could Python possibly know

[issue7775] str.rpartition(sep) - (tail, sep, head)

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: -- type: - behavior versions: +Python 2.6, Python 2.7, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7775 ___

<    1   2