Author: Brian Kearns <[email protected]>
Branch: use-file-star-for-file
Changeset: r73552:99cbbfbb8ded
Date: 2014-09-16 12:57 -0400
http://bitbucket.org/pypy/pypy/changeset/99cbbfbb8ded/

Log:    add a comment

diff --git a/rpython/rlib/rfile.py b/rpython/rlib/rfile.py
--- a/rpython/rlib/rfile.py
+++ b/rpython/rlib/rfile.py
@@ -482,6 +482,7 @@
             return p - 1
 
     def _get_line_fgets(self):
+        # XXX use buffer size logic from cpython
         with rffi.scoped_alloc_buffer(BASE_LINE_SIZE) as buf:
             c = self._get_line_fgets_single(buf.raw)
             if c >= 0:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to