On 30/01/2015 5:49 AM, michele wrote:
> Hey folks,
>
> I’m dropping a quick note on this; didn’t have the time to look through:
>
>
> Python 2.7.9 introduced SSL certificate validation by default. The default
> distribution
> expects the CA at /etc/ssl/ , but FreeBSD stores it in /usr/local/etc
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197122
Mark Linimon changed:
What|Removed |Added
Summary|[NEW PORT] devel/waf: Meta |[NEW PORT] devel/py-waf:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197122
Radim Kolar changed:
What|Removed |Added
Attachment #152259|0 |1
is obsolete|
On Thu, Jan 29, 2015 at 02:42:31AM -0500, Robert Simmons wrote:
> On Thu, Jan 29, 2015 at 2:29 AM, Roland Smith wrote:
> > On Thu, Jan 29, 2015 at 01:38:21AM -0500, Robert Simmons wrote:
> >> I'm having a unicode problem on FreeBSD lang/python34 that does not
> >> appear on MacOS X. I've condensed
Hey folks,
I’m dropping a quick note on this; didn’t have the time to look through:
Python 2.7.9 introduced SSL certificate validation by default. The default
distribution
expects the CA at /etc/ssl/ , but FreeBSD stores it in /usr/local/etc/ssl .
This silently breaks all systems using SSL con
Am 29.01.2015 um 10:53 schrieb Konstantin Belousov:
> On Thu, Jan 29, 2015 at 08:32:35PM +1100, Kubilay Kocak wrote:
>> On 29/01/2015 6:13 PM, Robert Simmons wrote:
>>> On further inspection I've found the following:
>>>
>>> FreeBSD
>> import sys
>> print(sys.getdefaultencoding())
>>> utf-8
I appreciate the assistance. Setting the LANG variable does the trick.
I made the change system-wide by adding the following to
/etc/login.conf
LC_COLLATE=C
charset=UTF-8
lang=en_US.UTF-8
Now the output is correct:
>>> b'\xc3\xa2'.decode('utf-8')
'â'
>>> import sys
>>> print(sys.stdout.encoding)
U
On Thu, Jan 29, 2015 at 08:32:35PM +1100, Kubilay Kocak wrote:
> On 29/01/2015 6:13 PM, Robert Simmons wrote:
> > On further inspection I've found the following:
> >
> > FreeBSD
> import sys
> print(sys.getdefaultencoding())
> > utf-8
> print(sys.stdout.encoding)
> > US-ASCII
> >
>
On 29/01/2015 6:13 PM, Robert Simmons wrote:
> On further inspection I've found the following:
>
> FreeBSD
import sys
print(sys.getdefaultencoding())
> utf-8
print(sys.stdout.encoding)
> US-ASCII
>
> MacOS X:
import sys
print(sys.getdefaultencoding())
> utf-8
print(s