Changes between Initial Version and Version 15 of Ticket #8102


Ignore:
Timestamp:
Aug 8, 2008, 11:12:49 AM (16 years ago)
Author:
Malcolm Tredinnick
Comment:

Unbreak the description so that my eyes stop watering.

I'm not 100% certain this is a real bug. If you're using latin1 as your database coding, then Django cannot be expected to adjust for that because it should not have to introspect the server/client differences. Could well be a case of "Doctor, it hurts when I do this...".

Still there's a lot of other good collate-related stuff in here, so leaving it open because there's some stuff here we need to apply.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8102

    • Property Status newreopened
    • Property Component Core frameworkDatabase wrapper
    • Property Milestone1.0 beta
    • Property Triage Stage UnreviewedAccepted
    • Property Patch needs improvement set
  • Ticket #8102 – Description

    initial v15  
    11Models.py:
    2 
     2{{{
     3#!python
    34class Article(models.Model):
    45    headline = models.CharField(max_length=100)
     
    1314>>> a
    1415(<Article: Article object>, True)
    15 
     16}}}
    1617
    1718This seems to be recently introduced (I'm on 8125) and only noticed the bug after a recent update.
Back to Top