[pypy-commit] pypy py3k: merge default

pjenvey noreply at buildbot.pypy.org
Thu Apr 18 03:57:46 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r63471:0b3850fd3bfe
Date: 2013-04-17 18:57 -0700
http://bitbucket.org/pypy/pypy/changeset/0b3850fd3bfe/

Log:	merge default

diff --git a/rpython/rtyper/lltypesystem/rffi.py b/rpython/rtyper/lltypesystem/rffi.py
--- a/rpython/rtyper/lltypesystem/rffi.py
+++ b/rpython/rtyper/lltypesystem/rffi.py
@@ -1059,6 +1059,7 @@
             self.buf = str2charp(value)
         else:
             self.buf = lltype.nullptr(CCHARP.TO)
+    __init__._annenforceargs_ = [None, str]
     def __enter__(self):
         return self.buf
     def __exit__(self, *args):
@@ -1072,6 +1073,7 @@
             self.buf = unicode2wcharp(value)
         else:
             self.buf = lltype.nullptr(CWCHARP.TO)
+    __init__._annenforceargs_ = [None, unicode]
     def __enter__(self):
         return self.buf
     def __exit__(self, *args):


More information about the pypy-commit mailing list