[Python-checkins] r68817 - in python/branches/io-c/Modules: _bufferedio.c _iobase.c _textio.c io.c

antoine.pitrou python-checkins at python.org
Tue Jan 20 22:19:45 CET 2009


Author: antoine.pitrou
Date: Tue Jan 20 22:19:45 2009
New Revision: 68817

Log:
Add some file headers



Modified:
   python/branches/io-c/Modules/_bufferedio.c
   python/branches/io-c/Modules/_iobase.c
   python/branches/io-c/Modules/_textio.c
   python/branches/io-c/Modules/io.c

Modified: python/branches/io-c/Modules/_bufferedio.c
==============================================================================
--- python/branches/io-c/Modules/_bufferedio.c	(original)
+++ python/branches/io-c/Modules/_bufferedio.c	Tue Jan 20 22:19:45 2009
@@ -1,3 +1,12 @@
+/*
+    An implementation of Buffered I/O as defined by PEP 3116 - "New I/O"
+    
+    Classes defined here: BufferedIOBase, BufferedReader, BufferedWriter,
+    BufferedRandom.
+    
+    Written by Amaury Forgeot d'Arc and Antoine Pitrou
+*/
+
 #define PY_SSIZE_T_CLEAN
 #include "Python.h"
 #include "structmember.h"

Modified: python/branches/io-c/Modules/_iobase.c
==============================================================================
--- python/branches/io-c/Modules/_iobase.c	(original)
+++ python/branches/io-c/Modules/_iobase.c	Tue Jan 20 22:19:45 2009
@@ -1,3 +1,13 @@
+/*
+    An implementation of the I/O abstract base classes hierarchy
+    as defined by PEP 3116 - "New I/O"
+    
+    Classes defined here: IOBase, RawIOBase.
+    
+    Written by Amaury Forgeot d'Arc and Antoine Pitrou
+*/
+
+
 #define PY_SSIZE_T_CLEAN
 #include "Python.h"
 #include "structmember.h"

Modified: python/branches/io-c/Modules/_textio.c
==============================================================================
--- python/branches/io-c/Modules/_textio.c	(original)
+++ python/branches/io-c/Modules/_textio.c	Tue Jan 20 22:19:45 2009
@@ -1,3 +1,11 @@
+/*
+    An implementation of Text I/O as defined by PEP 3116 - "New I/O"
+    
+    Classes defined here: TextIOBase, IncrementalNewlineDecoder, TextIOWrapper.
+    
+    Written by Amaury Forgeot d'Arc and Antoine Pitrou
+*/
+
 #define PY_SSIZE_T_CLEAN
 #include "Python.h"
 #include "structmember.h"

Modified: python/branches/io-c/Modules/io.c
==============================================================================
--- python/branches/io-c/Modules/io.c	(original)
+++ python/branches/io-c/Modules/io.c	Tue Jan 20 22:19:45 2009
@@ -1,3 +1,12 @@
+/*
+    An implementation of the new I/O lib as defined by PEP 3116 - "New I/O"
+    
+    Classes defined here: UnsupportedOperation, BlockingIOError.
+    Functions defined here: open().
+    
+    Mostly written by Amaury Forgeot d'Arc
+*/
+
 #define PY_SSIZE_T_CLEAN
 #include "Python.h"
 #include "structmember.h"


More information about the Python-checkins mailing list