[svn:parrot] r48252 - trunk/src/io
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Mon Aug 2 12:53:23 UTC 2010
Author: NotFound
Date: Mon Aug 2 12:53:22 2010
New Revision: 48252
URL: https://trac.parrot.org/parrot/changeset/48252
Log:
don't mention other PMC in TODO comment for FileHandle
Modified:
trunk/src/io/api.c
Modified: trunk/src/io/api.c
==============================================================================
--- trunk/src/io/api.c Mon Aug 2 12:28:41 2010 (r48251)
+++ trunk/src/io/api.c Mon Aug 2 12:53:22 2010 (r48252)
@@ -133,8 +133,7 @@
flags = Parrot_io_parse_open_flags(interp, mode);
if (new_filehandle->vtable->base_type == typenum) {
- /* TODO: StringHandle may have a null path, but a filehandle really
- shouldn't allow that. */
+ /* TODO: a filehandle shouldn't allow a NULL path. */
PARROT_ASSERT(new_filehandle->vtable->base_type == typenum);
filehandle = PIO_OPEN(interp, new_filehandle, path, flags);
if (PMC_IS_NULL(filehandle))
More information about the parrot-commits
mailing list