Changes between Initial Version and Version 1 of Ticket #28150


Ignore:
Timestamp:
Apr 28, 2017, 8:35:22 AM (7 years ago)
Author:
Marcos Diez
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28150 – Description

    initial v1  
    33On Python 2.7.12 and Python 3.5.2 ( Ubuntu 16.04 LTS)
    44
    5 --------------------
     5{{{
    66original_value = ('test trial', )
    77slug = slugify(original_value) # returns "test-trial"
    8 --------------------
     8}}}
     9
    910but on Python 2.7.12
    1011
     12{{{
    1113from __future__ return unicode_literals
    1214
    1315original_value = ('test trial', )
    1416slug = slugify(original_value) # returns "utest-trial"
     17}}}
    1518
    16 ----------------------------
    1719This is serious and inconsistent.
    1820Fixing it is not trivial either because it may cause backwards incompatibility.
Back to Top