Sam Kramer
Results
2
issues of
Sam Kramer
Original version -- attempting to access _mimetype_ attribute of string object: ``` def register_decoder(cls): for mt in cls.mimetypes: _registry[mt.mimetype] = cls return cls ``` Fixed version: ``` def register_decoder(cls): for...
Listing 2.4 on page 29: ``` // BUG: this code contains an error -- fails to read last three characters of string for (int i = 0; i < geneStr.length()...