@@ -75,7 +75,7 @@ INSTALLATION
75
75
them in the next change log. I'll do it. Don't think I won't.
76
76
77
77
VERSION
78
- $Id: Stringy.pm ,v 2.109 2003/12/21 18:51:45 eryq Exp $
78
+ $Id: README ,v 1.2 2005/02/10 21:24:05 dfs Exp $
79
79
80
80
TO DO
81
81
(2000/08/02) Finalize $/ support
@@ -87,34 +87,36 @@ TO DO
87
87
worried, so you have to enable it explicitly in 1.x. It will be on
88
88
by default in 2.x, though only IO::Scalar has been implemented.
89
89
90
- (2000/09/28) Separate read/write cursors?
91
- Binkley sent me a very interesting variant of IO::Scalar which
92
- maintains two separate cursors on the data, one for reading and one
93
- for writing. Quoth he:
94
-
95
- Isn't it the case that real operating system file descriptors
96
- maintain an independent read and write file position (and
97
- seek(2) resets them both)?
98
-
99
- (My answer: perhaps, but stdio's fseek/ftell manpages seem to imply
100
- a single file position indicator, and I'm trying to be IO::-ish.)
101
- Binkley also pointed out some issues with his implementation:
102
-
103
- For example, what does eof or tell return? The read position or
104
- the write position? (I assumed read position was more important).
105
-
106
- Your opinions on this are most welcome. (Me, I'm just squeamish that
107
- this will break some code which depends on the existing behavior,
108
- and that attempts to maintain backwards-compatibility will slow down
109
- the code.)
110
-
111
90
(2001/08/08) Remove IO::WrapTie from new IO:: classes
112
91
It's not needed. Backwards compatibility could be maintained by
113
92
having new_tie() be identical to new(). Heck, I'll bet that
114
93
IO::WrapTie should be reimplemented so the returned object is just
115
94
like an IO::Scalar in its use of globrefs.
116
95
117
96
CHANGE LOG
97
+ Version 2.110 (2005/02/10)
98
+ Maintainership taken over by DSKOLL <
[email protected] >
99
+
100
+ Closed the following bugs at
101
+ https://rt.cpan.org/NoAuth/Bugs.html?Dist=IO-stringy:
102
+
103
+ * 2208 IO::ScalarArray->getline does not return undef for EOF if
104
+ undef($/)
105
+
106
+ * 7132 IO-stringy/Makefile.PL bug - name should be module name
107
+
108
+ * 11249 IO::Scalar flush shouldn't return undef
109
+
110
+ * 2172 $\ (output record separator) not respected
111
+
112
+ * 8605 IO::InnerFile::seek() should return 1 on success
113
+
114
+ * 4798 *.html in lib/
115
+
116
+ * 4369 Improvement: handling of fixed-size reads in IO::Scalar
117
+
118
+ (Actually, bug 4369 was closed in Version 2.109)
119
+
118
120
Version 2.109 (2003/12/21)
119
121
IO::Scalar::getline now works with ref to int. *Thanks to Dominique
120
122
Quatravaux for this patch.*
@@ -233,7 +235,7 @@ CHANGE LOG
233
235
loses urgency
234
236
235
237
BABY EATS FISH is
236
- simply not equivalent
238
+ simply not equivalent
237
239
to FISH EATS BABY
238
240
239
241
New sysread and syswrite methods for IO::Scalar. *Thanks again to
@@ -287,6 +289,9 @@ CHANGE LOG
287
289
288
290
AUTHOR
289
291
Primary Maintainer
292
+ David F. Skoll (
[email protected] ).
293
+
294
+ Original Author
290
295
Eryq (
[email protected] ). President, ZeeGee Software Inc
291
296
(http://www.zeegee.com).
292
297
@@ -295,8 +300,8 @@ AUTHOR
295
300
officially recognized:
296
301
297
302
Richard Jones
298
- B. K. Oxley (binkley)
299
- Doru Petrescu
303
+ B. K. Oxley (binkley)
304
+ Doru Petrescu
300
305
Doug Wilson (for picking up the ball I dropped, and doing tie() right)
301
306
302
307
Go to http://www.zeegee.com for the latest downloads and on-line
0 commit comments