Re: FreeBSD Port: lang/python27

2015-01-29 Thread Kubilay Kocak
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

[Bug 197122] [NEW PORT] devel/py-waf: Meta build system

2015-01-29 Thread bugzilla-noreply
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:

[Bug 197122] [NEW PORT] devel/waf: Meta build system

2015-01-29 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197122 Radim Kolar changed: What|Removed |Added Attachment #152259|0 |1 is obsolete|

Re: Unicode Problem

2015-01-29 Thread Roland Smith
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

FreeBSD Port: lang/python27

2015-01-29 Thread michele
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

Re: Unicode Problem

2015-01-29 Thread Rainer Hurling
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

Re: Unicode Problem

2015-01-29 Thread Robert Simmons
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

Re: Unicode Problem

2015-01-29 Thread 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 > print(sys.stdout.encoding) > > US-ASCII > > >

Re: Unicode Problem

2015-01-29 Thread Kubilay Kocak
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