Re: #16245: send_robust should include traceback in response when Exception occurs

2013-10-30 Thread unai
> I wouldn't go telling you to do more work than you think is > necessary, but if you're willing to do eithr, I'd prefer to see the > second solution in Django; for all the reasons you gave, plus it is > "more backward compatible": Assume I have some code doing > > for receiver, response in m

Re: Django mysql over ssl (2026, 'SSL connection error: Failed to set ciphers to use')

2013-10-30 Thread Florian Apolloner
Hi, this mailing list is about the development of Django itself; please post your questions to django-users -- also read https://code.google.com/p/modwsgi/wiki/ApplicationIssues#SSL_Shared_Library_Conflicts Regards, Florian -- You received this message because you are subscribed to the Google

Re: #16245: send_robust should include traceback in response when Exception occurs

2013-10-30 Thread Shai Berger
On Wednesday 30 October 2013 11:23:07 unai wrote: > > Now, this ticket doubts between two possible solutions. The first of them > is returning a `(receiver, (type, exception, traceback))` made by > `(receiver, sys.exc_info())` tuple if `exc_info` is True: > > for receiver, (typ, exc, tbk) in

Re: Unit tests error out with WinError 10013 in my Windows 7 machine with Python 3.3.2

2013-10-30 Thread Ramiro Morales
If you update your git clone these Windows-specific extra errors and failures shouldn't be there anymore either. Please report back if that isn't the case. Ramiro Morales @ramiromorales On Oct 30, 2013 10:12 AM, "Antony J" wrote: > Sam, Marc, > > Thank you for your responses. Sorry I could not

Django mysql over ssl (2026, 'SSL connection error: Failed to set ciphers to use')

2013-10-30 Thread alex
Hy, Summary: I'm getting this error "(2026, 'SSL connection error: Failed to set ciphers to use')", on the django error page and I don't know what i happening!!! I'm using apache / wsgi and my aplication it's on a virtualenv. The main problem is that I can't connect to a remote mysql ove

Re: Unit tests error out with WinError 10013 in my Windows 7 machine with Python 3.3.2

2013-10-30 Thread Antony J
Sam, Marc, Thank you for your responses. Sorry I could not get back on this sooner. I ran the command “netstat -anob | findstr 8081” and found that the McAfee framework service was listening in port 8081. After killing the frameworkservice.exe, the errors went away. However, there still are 2 f

#16245: send_robust should include traceback in response when Exception occurs

2013-10-30 Thread unai
Hi everybody! I'm trying to defrost the ticket #16245 that says that `django.dispatch.dispatcher.Signal.send_robust` should include not only the exception but also the traceback if something goes wrong. At this moment, `send_robust` returns a list of (receiver, exception) tuples so that... f