Changes between Initial Version and Version 1 of Ticket #29086, comment 6


Ignore:
Timestamp:
Jan 29, 2018, 8:19:11 PM (6 years ago)
Author:
Collin Anderson

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29086, comment 6

    initial v1  
    33"Python 3 is stricter about this concept and it's a good thing IMHO." - Right, it raises an error when you pass bytes, it seems to me Django should do the same thing.
    44
    5 It seems to me the current behavior is really bad for projects that are upgrading. Maybe the force_text() calls (#27795) need to be bytes_not_allowed() or something. (Too late to raise an error for 2.0, but maybe we could start raising a warning?)
     5It seems to me the current behavior is really bad for projects that are upgrading, because there's no warning or error, just silent bad data. Maybe the force_text() calls (#27795) need to be bytes_not_allowed() or something. (Too late to raise an error for 2.0, but maybe we could start raising a warning?)
Back to Top