[issue12770] Email problem on Windows XP SP3 32bits

2011-08-17 Thread Marcelo
New submission from Marcelo dapda...@yahoo.com.br: I use Emesene 2.11.7 on Windows XP SP3, 32Bits. When I clic on the Email botom, Emesene don´t open my email aconunt in Internet Explorer, or Mozilla Firefox or any other browser. -- messages: 142278 nosy: butuntu priority: normal

[issue40960] Fix the example in hashlib documentarion

2020-06-12 Thread Marcelo
New submission from Marcelo : The documentation found in https://docs.python.org/2/library/hashlib.html give us the following example: ``` More condensed: >>> hashlib.sha224("Nobody inspects the spammish repetition").hexdigest() 'a4337bc45a8fc544c03f52dc550cd6e1e8702

[issue40960] Fix the example in hashlib documentarion

2020-06-12 Thread Marcelo
Marcelo added the comment: ooops, thank you! -- ___ Python tracker <https://bugs.python.org/issue40960> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5672] Implement a way to change the python process name

2010-06-24 Thread Marcelo Fernández
Marcelo Fernández marcelo.fidel.fernan...@gmail.com added the comment: So, while I'd be pleased to have it included in the stdlib, I'm not really convinced it would be useful to such a large audience. I think different, if python becomes even more successful to be used in desktop apps

[issue3466] urllib2 should support HTTPS connections with client keys

2008-07-29 Thread Marcelo Fernández
New submission from Marcelo Fernández [EMAIL PROTECTED]: Despite httplib does have support for HTTPS with client keys[1], urllib2 should support them too, because of the added value that urllib2 has, like cookielib automatic handling. [1]: http://code.activestate.com/recipes/117004/ However, I

[issue5672] Implement a way to change the python process name

2009-12-06 Thread Marcelo Fernández
Marcelo Fernández marcelo.fidel.fernan...@gmail.com added the comment: Great, piro! I'm taking a look at it, and it seems to use setproctitle() in BSD, and writes over the argv array in most Sys-V like systems; this includes Linux? My question is because I think there's a better

[issue5672] Implement a way to change the python process name

2009-12-06 Thread Marcelo Fernández
Marcelo Fernández marcelo.fidel.fernan...@gmail.com added the comment: 2009/12/6 Daniele Varrazzo rep...@bugs.python.org: My question is because I think there's a better and supported method for Linux, that is, using prctl [1]. I read somewhere that changing argv causes some inconsistencies

[issue5672] Implement a way to change the python process name

2009-12-06 Thread Marcelo Fernández
Marcelo Fernández marcelo.fidel.fernan...@gmail.com added the comment: 2009/12/6 Daniele Varrazzo rep...@bugs.python.org: Just released setproctitle 0.2 where I also call prctl() if available. It is actually the string used by killall. Great! I've just tested it and it works fine here

[issue5672] Implement a way to change the python process name

2009-12-07 Thread Marcelo Fernández
Marcelo Fernández marcelo.fidel.fernan...@gmail.com added the comment: 2009/12/7 Daniele Varrazzo rep...@bugs.python.org: Daniele Varrazzo p...@develer.com added the comment: I've just tested it and it works fine here... Any possibility this module can be included in the regular python

[issue14825] Interactive Shell vs Executed code

2012-05-16 Thread Marcelo Delgado
New submission from Marcelo Delgado marde...@gmail.com: I have found inconsistency between running this code in the interactive shell and running it from a file: Int. Shell: n**0 ## n is a negative number result: -1 File: n**0 ## n is a negative number result: 1 I am fairly new to Python, so

[issue14825] Interactive Shell vs Executed code

2012-05-16 Thread Marcelo Delgado
Changes by Marcelo Delgado marde...@gmail.com: -- components: +Interpreter Core -Regular Expressions ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14825

[issue14204] Support for the NPN extension to TLS/SSL

2012-03-28 Thread Marcelo Fernández
Changes by Marcelo Fernández marcelo.fidel.fernan...@gmail.com: -- nosy: +marcelo_fernandez ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14204

[issue5672] Implement a way to change the python process name

2009-04-02 Thread Marcelo Fernández
New submission from Marcelo Fernández fernandez...@yahoo.com.ar: As python gains more popularity, more and more applications run under CPython in a common user desktop. The problem is that if a user has 2 or more python apps running there is no way to identify them correctly from the generic

[issue5672] Implement a way to change the python process name

2009-04-02 Thread Marcelo Fernández
Marcelo Fernández fernandez...@yahoo.com.ar added the comment: Uhm... ok, (looking at issue 4015) I agree with that method at some point (tough is not exactly the same thing)... but only if the launcher will not be for Windows only, and that solution would be consistent across al platforms

[issue5672] Implement a way to change the python process name

2009-04-04 Thread Marcelo Fernández
Marcelo Fernández fernandez...@yahoo.com.ar added the comment: Fine, I'll try to make a patch based on the procname project in Google Code. Here are some more links with more approaches to solve this issue (while I learn how to make a patch :-) ) http://abock.org/2006/02/09/changing-process

[issue5672] Implement a way to change the python process name

2009-04-06 Thread Marcelo Fernández
Marcelo Fernández fernandez...@yahoo.com.ar added the comment: This patch (to python 2.7 trunk) allows to call prctl() function from Linux kernel to change the process name. It adds two methods to the os module: os.getprocname() and os.setprocname(). Working example: marc...@marcelo-laptop

[issue5672] Implement a way to change the python process name

2009-04-06 Thread Marcelo Fernández
Marcelo Fernández fernandez...@yahoo.com.ar added the comment: Great, it's my first patch to python and I'm very happy with your comments. :-) Thanks Amaury, do you think is better that I should take out getprocname() if setprocname() changes sys.argv too? When I got some spare time, I'll take

[issue3466] urllib2 should support HTTPS connections with client keys

2009-04-29 Thread Marcelo Fernández
Marcelo Fernández fernandez...@yahoo.com.ar added the comment: The workaround I posted before doesn't work with Python 2.6. This one works (at least) with Python 2.5 *and* Python 2.6: import httplib import urllib2 key_file = 'mykey.pem' cert_file = 'mycert-signed.pem' class

[issue25251] Unknown MS Compiler version 1900

2016-01-16 Thread Marcelo Duarte
Marcelo Duarte added the comment: I hava a problem with others packages, like cchardet and aiohttp. Aplying the patch changed the error message, then I generate a lib for vcruntime140, and finally, it is installed: #go to python installation dir cd M:\Applications\Python35-32 pexports

[issue33685] Instances bound methods with different memory addresses but sharing same id

2018-05-29 Thread Marcelo Alves
New submission from Marcelo Alves : Different instances should have different bound method ids, since they have different memory addresses, isn’t it? Example: I have a class and two instances: class MyClass: def something(): pass a = MyClass() b = MyClass

[issue36055] Division using math.pow and math.log approximation fails

2019-02-20 Thread Marcelo Marotta
New submission from Marcelo Marotta : Steps to reproduce the error >>> import math >>> 1/math.log(math.pow(30,0.5),2) == 2/math.log(30,2) True >>> 1/math.log(math.pow(9,0.5),2) == 2/math.log(9,2) True >>> 1/math.log(math.pow(15,0.5),2) == 2/math.log(15,2) T

[issue28747] Expose SSL_CTX_set_cert_verify_callback

2019-08-13 Thread Marcelo Salhab Brogliato
Marcelo Salhab Brogliato added the comment: Exposing SSL_CTX_set_cert_verify_callback is useful when we want to use a Public Key Authentication, like it is done in the SSH Protocol. Do you know any other way to use Public Key Authentication besides using SSL_CTX_set_cert_verify_callback