Changes between Initial Version and Version 1 of Ticket #28150
- Timestamp:
- Apr 28, 2017, 8:35:22 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28150 – Description
initial v1 3 3 On Python 2.7.12 and Python 3.5.2 ( Ubuntu 16.04 LTS) 4 4 5 -------------------- 5 {{{ 6 6 original_value = ('test trial', ) 7 7 slug = slugify(original_value) # returns "test-trial" 8 -------------------- 8 }}} 9 9 10 but on Python 2.7.12 10 11 12 {{{ 11 13 from __future__ return unicode_literals 12 14 13 15 original_value = ('test trial', ) 14 16 slug = slugify(original_value) # returns "utest-trial" 17 }}} 15 18 16 ----------------------------17 19 This is serious and inconsistent. 18 20 Fixing it is not trivial either because it may cause backwards incompatibility.