Module: Text::CSV::Unicode

Description:
    Text::CSV::Unicode builds on Text::CSV to provides facilities for the 
    composition and decomposition of comma-separated values.  
    Text::CSV::Unicode handles input that includes 8-bit (and more) data.

    It is based on version 0.01 of Text::CSV, but has been reimplemented
    to use the current Text::CSV.

Copying:
    Copyright (c) 2007, 2008, 2010, 2011, 2012, 2018 Robin Barker.  
    All rights reserved.

    This program is free software; you can redistribute it
    and/or modify it under the same terms as Perl itself.

    lib/Text/CSV/Base.pm (version 0.01) was a direct copy of 
    Text-CSV-0.01/CSV.pm, and t/base.t was a direct copy of
    Text-CSV-0.01/test.pl, with only the module name changed
    (and white-space changes), and these files are
    Copyright (c) 1997 Alan Citterman.

Author:
    Robin Barker <rmbarker@cpan.org>

    based on Text::CSV by
    Alan Citterman <alan@mfgrtl.com>

Prerequisites:
    perl 5.8.0

Build/Installation:
    Standard build/installation supported by ExtUtils::MakeMaker(3)...
	perl Makefile.PL
	make
	make test
	make install

Recent Changes:
    v0.300 2018-09-28
	Text::CSV::Unicode does not use Text::CSV::Base
	Text::CSV::Base is redundant
	Text::CSV::Unicode does not set C<always_quote => 1>
	Text::CSV::Unicode C<binary => 1> is deprecated

    v0.201 2018-09-25
	Add C<use warnings> to t/unicode.t: 
		deprecate was not a default warning before perl 5.18.0, 
		so the 'deprecated' test had been failing on earlier perls.
	Use C<warnings::warnif()>
	Better punctuation in the t/unicode.t tests
	
    v0.200 2018-09-21
	Completely rewritten to use Text::CSV
	Allow unicode but not Cntrl in Text::CSV::Unicode
	Allow all unicode with binary=>1, by dropping through to Text::CSV
	combine() with undef produces different output: t/combine-undef.t
	version() provided by Text::CSV::Version 
		- test as class method: t/unicode.t