update Changes
[p5sagit/p5-mst-13.2.git] / Todo-5.6
CommitLineData
6dd11d31 1Unicode support
2 finish byte <-> utf8 and localencoding <-> utf8 conversions
3 make "$bytestr$charstr" do the right conversion
4 add Unicode::Map equivivalent to core
5 add support for I/O disciplines
6 - open(F, "<!crlf!utf16", $file)
7 - binmode(STDIN, "<!crlf!utf16")?
8 - a way to set the "system" discipline (binmode("!crlf!utf16") maybe?)
9 - nice IO::Filter module to push/pop disciplines
10 eliminate need for "use utf8;"
6dd11d31 11 support C<print v1.2.3>
12 make C<v123> mean C<chr(123)> (if !exists(&v123))
13 autoload utf8_heavy.pl's swash routines in swash_init()
14
d7d0d977 15Multi-threading
6dd11d31 16 support "use Thread;" under useithreads
17 add mechanism to:
18 - create new interpreter in a different thread
19 - exchange data between interpreters/threads
20 - share namespaces between interpreters/threads
21 work out consistent semantics for exit/die in threads
22 support for externally created threads?
23 Thread::Pool?
d7d0d977 24
25Compiler
26 auto-produce executable
27 typed lexicals should affect B::CC::load_pad
28 workarounds to help Win32
d7d0d977 29 END blocks need saving in compiled output
30 _AUTOLOAD prodding
25f62d1c 31 fix comppadlist (names in comppad_name can have fake SvCUR
32 from where newASSIGNOP steals the field)
d7d0d977 33
5152d7c7 34Namespace cleanup
6dd11d31 35 CPP-space: restrict what we export from headers when !PERL_CORE
36 header-space: move into CORE/perl/?
37 API-space: complete the list of things that constitute public api
5152d7c7 38
45ebb638 39Configure
40 make configuring+building away from source directory work (VPATH et al)
41 _r support
42 cross-compilation configuring
2a40f0e3 43 POSIX 1003.1 1996 Edition support
45ebb638 44
45Locales
6dd11d31 46 deprecate traditional/legacy locales?
47 figure out how to support Unicode locales
11eeea96 48 locales across packages?
45ebb638 49
50Regexen
6dd11d31 51 make RE engine thread-safe
b8c5462f 52 POSIX [=bar=] and [.zap.] would nice too but there's no API for them
53 (=bar= could be done with Unicode, though)
45ebb638 54 approximate matching
55
5152d7c7 56Reliable Signals
54aff467 57 custom opcodes
5152d7c7 58 alternate runops() for signal despatch
59 figure out how to die() in delayed sighandler
6dd11d31 60 make Thread::Signal work under useithreads
5152d7c7 61
62Win32 stuff
6dd11d31 63 sort out the spawnvp() mess for system('a','b','c') compatibility
5152d7c7 64 work out DLL versioning
5152d7c7 65
66Miscellaneous
5152d7c7 67 magic_setisa should be made to update %FIELDS [???]
0ff51efc 68 add new modules (Archive::Tar, Compress::Zlib, CPAN::FTP?)
6dd11d31 69 replace pod2html with new PodtoHtml? (requires other modules from CPAN)
245ccdfc 70 automate testing with large parts of CPAN
71
72Ongoing
73 keep filenames 8.3 friendly, where feasible
74 upgrade to newer versions of all independently maintained modules
9cc29783 75 comprehensive perldelta.pod
5152d7c7 76
d7d0d977 77Documentation
5152d7c7 78 describe new age patterns
79 update perl{guts,call,embed,xs} with additions, changes to API
80 document Win32 choices
5152d7c7 81 spot-check all new modules for completeness
11162842 82 better docs for pack()/unpack()
245ccdfc 83 reorg tutorials vs. reference sections