[pypy-commit] pypy default: try to fix freebsd translation

2015-01-07 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r75255:7ee4207de06d Date: 2015-01-07 19:38 -0500 http://bitbucket.org/pypy/pypy/changeset/7ee4207de06d/ Log:try to fix freebsd translation diff --git a/rpython/translator/platform/freebsd.py b/rpython/translator/platform/freebsd.py --- a/rpython/tran

[pypy-commit] cffi default: Clarify the error we get if we try to use TCHAR & friends before calling

2015-01-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r1623:138fea1cf4bd Date: 2015-01-07 22:15 +0100 http://bitbucket.org/cffi/cffi/changeset/138fea1cf4bd/ Log:Clarify the error we get if we try to use TCHAR & friends before calling ffi.set_unicode(). diff --git a/cffi/api.py b/cffi/api.py --- a/c

[pypy-commit] pypy default: Update for cffi/275285b314a7

2015-01-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r75254:9d3eb04e5545 Date: 2015-01-07 21:23 +0100 http://bitbucket.org/pypy/pypy/changeset/9d3eb04e5545/ Log:Update for cffi/275285b314a7 diff --git a/pypy/module/_cffi_backend/ccallback.py b/pypy/module/_cffi_backend/ccallback.py --- a/pypy/module/_cff

[pypy-commit] cffi default: improve doc for ffi.set_unicode()

2015-01-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r1622:f5ff0b68e418 Date: 2015-01-07 19:25 +0100 http://bitbucket.org/cffi/cffi/changeset/f5ff0b68e418/ Log:improve doc for ffi.set_unicode() diff --git a/doc/source/index.rst b/doc/source/index.rst --- a/doc/source/index.rst +++ b/doc/source/index.rst @

[pypy-commit] cffi default: Document ffi.set_unicode()

2015-01-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r1621:e5f44c1fd9f7 Date: 2015-01-07 18:51 +0100 http://bitbucket.org/cffi/cffi/changeset/e5f44c1fd9f7/ Log:Document ffi.set_unicode() diff --git a/cffi/api.py b/cffi/api.py --- a/cffi/api.py +++ b/cffi/api.py @@ -411,16 +411,16 @@ def from_handle(s

[pypy-commit] cffi default: issue #172

2015-01-07 Thread arigo
Author: Armin Rigo Branch: Changeset: r1620:b3b479ff6ebc Date: 2015-01-07 18:38 +0100 http://bitbucket.org/cffi/cffi/changeset/b3b479ff6ebc/ Log:issue #172 Fix an inconsistency: the define "UNICODE" must be present explicitly iff we're declaring TCHAR to be a wchar_t. diff