Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

856 lines
24 KiB

  1. =head1 NAME
  2. perltodo - Perl TO-DO List
  3. =head1 DESCRIPTION
  4. This is a list of wishes for Perl. It is maintained by Nathan
  5. Torkington for the Perl porters. Send updates to
  6. I<[email protected]>. If you want to work on any of these
  7. projects, be sure to check the perl5-porters archives for past ideas,
  8. flames, and propaganda. This will save you time and also prevent you
  9. from implementing something that Larry has already vetoed. One set
  10. of archives may be found at:
  11. http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/
  12. =head1 Infrastructure
  13. =head2 Mailing list archives
  14. Chaim suggests contacting egroup and asking them to archive the other
  15. perl.org mailing lists. Probably not advocacy, but definitely
  16. perl6-porters, etc.
  17. =head2 Bug tracking system
  18. Richard Foley I<[email protected]> is writing one. We looked at
  19. several, like gnats and the Debian system, but at the time we
  20. investigated them, none met our needs. Since then, Jitterbug has
  21. matured, and may be worth reinvestigation.
  22. The system we've developed is the recipient of perlbug mail, and any
  23. followups it generates from perl5-porters. New bugs are entered
  24. into a mysql database, and sent on to
  25. perl5-porters with the subject line rewritten to include a "ticket
  26. number" (unique ID for the new bug). If the incoming message already
  27. had a ticket number in the subject line, then the message is logged
  28. against that bug. There is a separate email interface (not forwarding
  29. to p5p) that permits porters to claim, categorize, and close tickets.
  30. There is also a web interface to the system at http://bugs.perl.org.
  31. The current delay in implementation is caused by perl.org lockups.
  32. One suspect is the mail handling system, possibly going into loops.
  33. We still desperately need a bugmaster, someone who will look at
  34. every new "bug" and kill those that we already know about, those
  35. that are not bugs at all, etc.
  36. =head2 Regression Tests
  37. The test suite for Perl serves two needs: ensuring features work, and
  38. ensuring old bugs have not been reintroduced. Both need work.
  39. Brent LaVelle ([email protected]) has stepped forward to work on
  40. performance tests and improving the size of the test suite.
  41. =over 4
  42. =item Coverage
  43. Do the tests that come with Perl exercise every line (or every block,
  44. or ...) of the Perl interpreter, and if not then how can we make them
  45. do so?
  46. =item Regression
  47. No bug fixes should be made without a corresponding testsuite addition.
  48. This needs a dedicated enforcer, as the current pumpking is either too
  49. lazy or too stupid or both and lets enforcement wander all over the
  50. map. :-)
  51. =item __DIE__
  52. Tests that fail need to be of a form that can be readily mailed
  53. to perlbug and diagnosed with minimal back-and-forth's to determine
  54. which test failed, due to what cause, etc.
  55. =item suidperl
  56. We need regression/sanity tests for suidperl
  57. =item The 25% slowdown from perl4 to perl5
  58. This value may or may not be accurate, but it certainly is
  59. eye-catching. For some things perl5 is faster than perl4, but often
  60. the reliability and extensibility have come at a cost of speed. The
  61. benchmark suite that Gisle released earlier has been hailed as both a
  62. fantastic solution and as a source of entirely meaningless figures.
  63. Do we need to test "real applications"? Can you do so? Anyone have
  64. machines to dedicate to the task? Identify the things that have grown
  65. slower, and see if there's a way to make them faster.
  66. =back
  67. =head1 Configure
  68. Andy Dougherty maintain(ed|s) a list of "todo" items for the configure
  69. that comes with Perl. See Porting/pumpkin.pod in the latest
  70. source release.
  71. =head2 Install HTML
  72. Have "make install" give you the option to install HTML as well. This
  73. would be part of Configure. Andy Wardley (certified Perl studmuffin)
  74. will look into the current problems of HTML installation--is
  75. 'installhtml' preventing this from happening cleanly, or is pod2html
  76. the problem? If the latter, Brad Appleton's pod work may fix the
  77. problem for free.
  78. =head1 Perl Language
  79. =head2 64-bit Perl
  80. Verify complete 64 bit support so that the value of sysseek, or C<-s>, or
  81. stat(), or tell can fit into a perl number without losing precision.
  82. Work with the perl-64bit mailing list on perl.org.
  83. =head2 Prototypes
  84. =over 4
  85. =item Named prototypes
  86. Add proper named prototypes that actually work usefully.
  87. =item Indirect objects
  88. Fix prototype bug that forgets indirect objects.
  89. =item Method calls
  90. Prototypes for method calls.
  91. =item Context
  92. Return context prototype declarations.
  93. =item Scoped subs
  94. lexically-scoped subs, e.g. my sub
  95. =back
  96. =head1 Perl Internals
  97. =head2 magic_setisa
  98. C<magic_setisa> should be made to update %FIELDS [???]
  99. =head2 Garbage Collection
  100. There was talk of a mark-and-sweep garbage collector at TPC2, but the
  101. (to users) unpredictable nature of its behaviour put some off.
  102. Sarathy, I believe, did the work. Here's what he has to say:
  103. Yeah, I hope to implement it someday too. The points that were
  104. raised in TPC2 were all to do with calling DESTROY() methods, but
  105. I think we can accommodate that by extending bless() to stash
  106. extra information for objects so we track their lifetime accurately
  107. for those that want their DESTROY() to be predictable (this will be
  108. a speed hit, naturally, and will therefore be optional, naturally. :)
  109. [N.B. Don't even ask me about this now! When I have the time to
  110. write a cogent summary, I'll post it.]
  111. =head2 Reliable signals
  112. Sarathy and Dan Sugalski are working on this. Chip posted a patch
  113. earlier, but it was not accepted into 5.005. The issue is tricky,
  114. because it has the potential to greatly slow down the core.
  115. There are at least three things to consider:
  116. =over 4
  117. =item Alternate runops() for signal despatch
  118. Sarathy and Dan are discussed this on perl5-porters.
  119. =item Figure out how to die() in delayed sighandler
  120. =item Add tests for Thread::Signal
  121. =item Automatic tests against CPAN
  122. Is there some way to automatically build all/most of CPAN with
  123. the new Perl and check that the modules there pass all the tests?
  124. =back
  125. =head2 Interpolated regex performance bugs
  126. while (<>) {
  127. $found = 0;
  128. foreach $pat (@patterns) {
  129. $found++ if /$pat/o;
  130. }
  131. print if $found;
  132. }
  133. The qr// syntax added in 5.005 has solved this problem, but
  134. it needs more thorough documentation.
  135. =head2 Memory leaks from failed eval/regcomp
  136. The only known memory leaks in Perl are in failed code or regexp
  137. compilation. Fix this. Hugo Van Der Sanden will attempt this but
  138. won't have tuits until January 1999.
  139. =head2 Make XS easier to use
  140. There was interest in SWIG from porters, but nothing has happened
  141. lately.
  142. =head2 Make embedded Perl easier to use
  143. This is probably difficult for the same reasons that "XS For Dummies"
  144. will be difficult.
  145. =head2 Namespace cleanup
  146. CPP-space: restrict CPP symbols exported from headers
  147. header-space: move into CORE/perl/
  148. API-space: begin list of things that constitute public api
  149. env-space: Configure should use PERL_CONFIG instead of CONFIG etc.
  150. =head2 MULTIPLICITY
  151. Complete work on safe recursive interpreters C<Perl-E<gt>new()>.
  152. Sarathy says that a reference implementation exists.
  153. =head2 MacPerl
  154. Chris Nandor and Matthias Neeracher are working on better integrating
  155. MacPerl into the Perl distribution.
  156. =head1 Documentation
  157. There's a lot of documentation that comes with Perl. The quantity of
  158. documentation makes it difficult for users to know which section of
  159. which manpage to read in order to solve their problem. Tom
  160. Christiansen has done much of the documentation work in the past.
  161. =head2 A clear division into tutorial and reference
  162. Some manpages (e.g., perltoot and perlreftut) clearly set out to
  163. educate the reader about a subject. Other manpages (e.g., perlsub)
  164. are references for which there is no tutorial, or are references with
  165. a slight tutorial bent. If things are either tutorial or reference,
  166. then the reader knows which manpage to read to learn about a subject,
  167. and which manpage to read to learn all about an aspect of that
  168. subject. Part of the solution to this is:
  169. =head2 Remove the artificial distinction between operators and functions
  170. History shows us that users, and often porters, aren't clear on the
  171. operator-function distinction. The present split in reference
  172. material between perlfunc and perlop hinders user navigation. Given
  173. that perlfunc is by far the larger of the two, move operator reference
  174. into perlfunc.
  175. =head2 More tutorials
  176. More documents of a tutorial nature could help. Here are some
  177. candidates:
  178. =over 4
  179. =item Regular expressions
  180. Robin Berjon ([email protected]) has volunteered.
  181. =item I/O
  182. Mark-Jason Dominus ([email protected]) has an outline for perliotut.
  183. =item pack/unpack
  184. This is badly needed. There has been some discussion on the
  185. subject on perl5-porters.
  186. =item Debugging
  187. Ronald Kimball ([email protected]) has volunteered.
  188. =back
  189. =head2 Include a search tool
  190. perldoc should be able to 'grep' fulltext indices of installed POD
  191. files. This would let people say:
  192. perldoc -find printing numbers with commas
  193. and get back the perlfaq entry on 'commify'.
  194. This solution, however, requires documentation to contain the keywords
  195. the user is searching for. Even when the users know what they're
  196. looking for, often they can't spell it.
  197. =head2 Include a locate tool
  198. perldoc should be able to help people find the manpages on a
  199. particular high-level subject:
  200. perldoc -find web
  201. would tell them manpages, web pages, and books with material on web
  202. programming. Similarly C<perldoc -find databases>, C<perldoc -find
  203. references> and so on.
  204. We need something in the vicinity of:
  205. % perl -help random stuff
  206. No documentation for perl function `random stuff' found
  207. The following entry in perlfunc.pod matches /random/a:
  208. =item rand EXPR
  209. =item rand
  210. Returns a random fractional number greater than or equal to C<0> and less
  211. than the value of EXPR. (EXPR should be positive.) If EXPR is
  212. omitted, the value C<1> is used. Automatically calls C<srand()> unless
  213. C<srand()> has already been called. See also C<srand()>.
  214. (Note: If your rand function consistently returns numbers that are too
  215. large or too small, then your version of Perl was probably compiled
  216. with the wrong number of RANDBITS.)
  217. The following pod pages seem to have /stuff/a:
  218. perlfunc.pod (7 hits)
  219. perlfaq7.pod (6 hits)
  220. perlmod.pod (4 hits)
  221. perlsyn.pod (3 hits)
  222. perlfaq8.pod (2 hits)
  223. perlipc.pod (2 hits)
  224. perl5004delta.pod (1 hit)
  225. perl5005delta.pod (1 hit)
  226. perlcall.pod (1 hit)
  227. perldelta.pod (1 hit)
  228. perlfaq3.pod (1 hit)
  229. perlfaq5.pod (1 hit)
  230. perlhist.pod (1 hit)
  231. perlref.pod (1 hit)
  232. perltoc.pod (1 hit)
  233. perltrap.pod (1 hit)
  234. Proceed to open perlfunc.pod? [y] n
  235. Do you want to speak perl interactively? [y] n
  236. Should I dial 911? [y] n
  237. Do you need psychiatric help? [y] y
  238. <PELIZA> Hi, what bothers you today?
  239. A Python programmer in the next cubby is driving me nuts!
  240. <PELIZA> Hmm, thats fixable. Just [rest censored]
  241. =head2 Separate function manpages by default
  242. Perl should install 'manpages' for every function/operator into the
  243. 3pl or 3p manual section. By default. The splitman program in the
  244. Perl source distribution does the work of turning big perlfunc into
  245. little 3p pages.
  246. =head2 Users can't find the manpages
  247. Make C<perldoc> tell users what they need to add to their .login or
  248. .cshrc to set their MANPATH correctly.
  249. =head2 Install ALL Documentation
  250. Make the standard documentation kit include the VMS, OS/2, Win32,
  251. Threads, etc information. installperl and pod/Makefile should know
  252. enough to copy README.foo to perlfoo.pod before building everything,
  253. when appropriate.
  254. =head2 Outstanding issues to be documented
  255. Tom has a list of 5.005_5* features or changes that require
  256. documentation.
  257. Create one document that coherently explains the delta between the
  258. last camel release and the current release. perldelta was supposed
  259. to be that, but no longer. The things in perldelta never seemed to
  260. get placed in the right places in the real manpages, either. This
  261. needs work.
  262. =head2 Adapt www.linuxhq.com for Perl
  263. This should help glorify documentation and get more people involved in
  264. perl development.
  265. =head2 Replace man with a perl program
  266. Can we reimplement man in Perl? Tom has a start. I believe some of
  267. the Linux systems distribute a manalike. Alternatively, build on
  268. perldoc to remove the unfeatures like "is slow" and "has no apropos".
  269. =head2 Unicode tutorial
  270. We could use more work on helping people understand Perl's new
  271. Unicode support that Larry has created.
  272. =head1 Modules
  273. =head2 Update the POSIX extension to conform with the POSIX 1003.1 Edition 2
  274. The current state of the POSIX extension is as of Edition 1, 1991,
  275. whereas the Edition 2 came out in 1996. ISO/IEC 9945:1-1996(E),
  276. ANSI/IEEE Std 1003.1, 1996 Edition. ISBN 1-55937-573-6. The updates
  277. were legion: threads, IPC, and real time extensions.
  278. =head2 Module versions
  279. Automate the checking of versions in the standard distribution so
  280. it's easy for a pumpking to check whether CPAN has a newer version
  281. that we should be including?
  282. =head2 New modules
  283. Which modules should be added to the standard distribution? This ties
  284. in with the SDK discussed on the perl-sdk list at perl.org.
  285. =head2 Profiler
  286. Make the profiler (Devel::DProf) part of the standard release, and
  287. document it well.
  288. =head2 Tie Modules
  289. =over 4
  290. =item VecArray
  291. Implement array using vec(). Nathan Torkington has working code to
  292. do this.
  293. =item SubstrArray
  294. Implement array using substr()
  295. =item VirtualArray
  296. Implement array using a file
  297. =item ShiftSplice
  298. Defines shift et al in terms of splice method
  299. =back
  300. =head2 Procedural options
  301. Support procedural interfaces for the common cases of Perl's
  302. gratuitously OOO modules. Tom objects to "use IO::File" reading many
  303. thousands of lines of code.
  304. =head2 RPC
  305. Write a module for transparent, portable remote procedure calls. (Not
  306. core). This touches on the CORBA and ILU work.
  307. =head2 y2k localtime/gmtime
  308. Write a module, Y2k::Catch, which overloads localtime and gmtime's
  309. returned year value and catches "bad" attempts to use it.
  310. =head2 Export File::Find variables
  311. Make File::Find export C<$name> etc manually, at least if asked to.
  312. =head2 Ioctl
  313. Finish a proper Ioctl module.
  314. =head2 Debugger attach/detach
  315. Permit a user to debug an already-running program.
  316. =head2 Regular Expression debugger
  317. Create a visual profiler/debugger tool that stepped you through the
  318. execution of a regular expression point by point. Ilya has a module
  319. to color-code and display regular expression parses and executions.
  320. There's something at http://tkworld.org/ that might be a good start,
  321. it's a Tk/Tcl RE wizard, that builds regexen of many flavours.
  322. =head2 Alternative RE Syntax
  323. Make an alternative regular expression syntax that is accessed through
  324. a module. For instance,
  325. use RE;
  326. $re = start_of_line()
  327. ->literal("1998/10/08")
  328. ->optional( whitespace() )
  329. ->literal("[")
  330. ->remember( many( or( "-", digit() ) ) );
  331. if (/$re/) {
  332. print "time is $1\n";
  333. }
  334. Newbies to regular expressions typically only use a subset of the full
  335. language. Perhaps you wouldn't have to implement the full feature set.
  336. =head2 Bundled modules
  337. Nicholas Clark ([email protected]) had a patch for storing modules in
  338. zipped format. This needs exploring and concluding.
  339. =head2 Expect
  340. Adopt IO::Tty, make it as portable as Don Libes' "expect" (can we link
  341. against expect code?), and perfect a Perl version of expect. IO::Tty
  342. and expect could then be distributed as part of the core distribution,
  343. replacing Comm.pl and other hacks.
  344. =head2 GUI::Native
  345. A simple-to-use interface to native graphical abilities would
  346. be welcomed. Oh, Perl's access Tk is nice enough, and reasonably
  347. portable, but it's not particularly as fast as one would like.
  348. Simple access to the mouse's cut buffer or mouse-presses shouldn't
  349. required loading a few terabytes of Tk code.
  350. =head2 Update semibroken auxiliary tools; h2ph, a2p, etc.
  351. Kurt Starsinic is working on h2ph. mjd has fixed bugs in a2p in the
  352. past. a2p apparently doesn't work on nawk and gawk extensions.
  353. Graham Barr has an Include module that does h2ph work at runtime.
  354. =head2 pod2html
  355. A short-term fix: pod2html generates absolute HTML links. Make it
  356. generate relative links.
  357. =head2 Podchecker
  358. Something like lint for Pod would be good. Something that catches
  359. common errors as well as gross ones. Brad Appleton is putting
  360. together something as part of his PodParser work.
  361. =head1 Tom's Wishes
  362. =head2 Webperl
  363. Design a webperl environment that's as tightly integrated and as
  364. easy-to-use as Perl's current command-line environment.
  365. =head2 Mobile agents
  366. More work on a safe and secure execution environment for mobile
  367. agents would be neat; the Safe.pm module is a start, but there's a
  368. still a lot to be done in that area. Adopt Penguin?
  369. =head2 POSIX on non-POSIX
  370. Standard programming constructs for non-POSIX systems would help a
  371. lot of programmers stuck on primitive, legacy systems. For example,
  372. Microsoft still hasn't made a usable POSIX interface on their clunky
  373. systems, which means that standard operations such as alarm() and
  374. fork(), both critical for sophisticated client-server programming,
  375. must both be kludged around.
  376. I'm unsure whether Tom means to emulate alarm( )and fork(), or merely
  377. to provide a document like perlport.pod to say which features are
  378. portable and which are not.
  379. =head2 Portable installations
  380. Figure out a portable semi-gelled installation, that is, one without
  381. full paths. Larry has said that he's thinking about this. Ilya
  382. pointed out that perllib_mangle() is good for this.
  383. =head1 Win32 Stuff
  384. =head2 Rename new headers to be consistent with the rest
  385. =head2 Work out DLL versioning
  386. =head2 Style-check
  387. =head1 Would be nice to have
  388. =over 4
  389. =item C<pack "(stuff)*">
  390. =item Contiguous bitfields in pack/unpack
  391. =item lexperl
  392. =item Bundled perl preprocessor
  393. =item Use posix calls internally where possible
  394. =item format BOTTOM
  395. =item -i rename file only when successfully changed
  396. =item All ARGV input should act like <>
  397. =item report HANDLE [formats].
  398. =item support in perlmain to rerun debugger
  399. =item lvalue functions
  400. Tuomas Lukka, on behalf of the PDL project, greatly desires this and
  401. Ilya has a patch for it (probably against an older version of Perl).
  402. Tuomas points out that what PDL really wants is lvalue I<methods>,
  403. not just subs.
  404. =back
  405. =head1 Possible pragmas
  406. =head2 'less'
  407. (use less memory, CPU)
  408. =head1 Optimizations
  409. =head2 constant function cache
  410. =head2 foreach(reverse...)
  411. =head2 Cache eval tree
  412. Unless lexical outer scope used (mark in &compiling?).
  413. =head2 rcatmaybe
  414. =head2 Shrink opcode tables
  415. Via multiple implementations selected in peep.
  416. =head2 Cache hash value
  417. Not a win, according to Guido.
  418. =head2 Optimize away @_ where possible
  419. =head2 Optimize sort by { $a <=> $b }
  420. Greg Bacon added several more sort optimizations. These have
  421. made it into 5.005_55, thanks to Hans Mulder.
  422. =head2 Rewrite regexp parser for better integrated optimization
  423. The regexp parser was rewritten for 5.005. Ilya's the regexp guru.
  424. =head1 Vague possibilities
  425. =over 4
  426. =item ref function in list context
  427. This seems impossible to do without substantially breaking code.
  428. =item make tr/// return histogram in list context?
  429. =item Loop control on do{} et al
  430. =item Explicit switch statements
  431. Nobody has yet managed to come up with a switch syntax that would
  432. allow for mixed hash, constant, regexp checks. Submit implementation
  433. with syntax, please.
  434. =item compile to real threaded code
  435. =item structured types
  436. =item Modifiable $1 et al
  437. The intent is for this to be a means of editing the matched portions of
  438. the target string.
  439. =back
  440. =head1 To Do Or Not To Do
  441. These are things that have been discussed in the past and roundly
  442. criticized for being of questionable value.
  443. =head2 Making my() work on "package" variables
  444. Being able to say my($Foo::Bar), something that sounds ludicrous and
  445. the 5.6 pumpking has mocked.
  446. =head2 "or" testing defined not truth
  447. We tell people that C<||> can be used to give a default value to a
  448. variable:
  449. $children = shift || 5; # default is 5 children
  450. which is almost (but not):
  451. $children = shift;
  452. $children = 5 unless $children;
  453. but if the first argument was given and is "0", then it will be
  454. considered false by C<||> and C<5> used instead. Really we want
  455. an C<||>-like operator that behaves like:
  456. $children = shift;
  457. $children = 5 unless defined $children;
  458. Namely, a C<||> that tests defined-ness rather than truth. One was
  459. discussed, and a patch submitted, but the objections were many. While
  460. there were objections, many still feel the need. At least it was
  461. decided that C<??> is the best name for the operator.
  462. =head2 "dynamic" lexicals
  463. my $x;
  464. sub foo {
  465. local $x;
  466. }
  467. Localizing, as Tim Bunce points out, is a separate concept from
  468. whether the variable is global or lexical. Chip Salzenberg had
  469. an implementation once, but Larry thought it had potential to
  470. confuse.
  471. =head2 "class"-based, rather than package-based "lexicals"
  472. This is like what the Alias module provides, but the variables would
  473. be lexicals reserved by perl at compile-time, which really are indices
  474. pointing into the pseudo-hash object visible inside every method so
  475. declared.
  476. =head1 Threading
  477. =head2 Modules
  478. Which of the standard modules are thread-safe? Which CPAN modules?
  479. How easy is it to fix those non-safe modules?
  480. =head2 Testing
  481. Threading is still experimental. Every reproducible bug identifies
  482. something else for us to fix. Find and submit more of these problems.
  483. =head2 $AUTOLOAD
  484. =head2 exit/die
  485. Consistent semantics for exit/die in threads.
  486. =head2 External threads
  487. Better support for externally created threads.
  488. =head2 Thread::Pool
  489. =head2 thread-safety
  490. Spot-check globals like statcache and global GVs for thread-safety.
  491. "B<Part done>", says Sarathy.
  492. =head2 Per-thread GVs
  493. According to Sarathy, this would make @_ be the same in threaded
  494. and non-threaded, as well as helping solve problems like filehandles
  495. (the same filehandle currently cannot be used in two threads).
  496. =head1 Compiler
  497. =head2 Optimization
  498. The compiler's back-end code-generators for creating bytecode or
  499. compilable C code could use optimization work.
  500. =head2 Byteperl
  501. Figure out how and where byteperl will be built for the various
  502. platforms.
  503. =head2 Precompiled modules
  504. Save byte-compiled modules on disk.
  505. =head2 Executables
  506. Auto-produce executable.
  507. =head2 Typed lexicals
  508. Typed lexicals should affect B::CC::load_pad.
  509. =head2 Win32
  510. Workarounds to help Win32 dynamic loading.
  511. =head2 END blocks
  512. END blocks need saving in compiled output, now that CHECK blocks
  513. are available.
  514. =head2 _AUTOLOAD
  515. _AUTOLOAD prodding.
  516. =head2 comppadlist
  517. Fix comppadlist (names in comppad_name can have fake SvCUR
  518. from where newASSIGNOP steals the field).
  519. =head2 Cached compilation
  520. Can we install modules as bytecode?
  521. =head1 Recently Finished Tasks
  522. =head2 Figure a way out of $^(capital letter)
  523. Figure out a clean way to extend $^(capital letter) beyond
  524. the 26 alphabets. (${^WORD} maybe?)
  525. Mark-Jason Dominus sent a patch which went into 5.005_56.
  526. =head2 Filenames
  527. Keep filenames in the distribution and in the standard module set
  528. be 8.3 friendly where feasible. Good luck changing the standard
  529. modules, though.
  530. =head2 Foreign lines
  531. Perl should be more generous in accepting foreign line terminations.
  532. Mostly B<done> in 5.005.
  533. =head2 Namespace cleanup
  534. symbol-space: "pl_" prefix for all global vars
  535. "Perl_" prefix for all functions
  536. CPP-space: stop malloc()/free() pollution unless asked
  537. =head2 ISA.pm
  538. Rename and alter ISA.pm. B<Done>. It is now base.pm.
  539. =head2 gettimeofday
  540. See Time::HiRes.
  541. =head2 autocroak?
  542. This is the Fatal.pm module, so any builtin that does
  543. not return success automatically die()s. If you're feeling brave, tie
  544. this in with the unified exceptions scheme.
  545. =cut