Opened 12 years ago

Closed 12 years ago

#18601 closed Cleanup/optimization (fixed)

document python minor version requirement of >=2.6.5

Reported by: Preston Holmes Owned by: nobody
Component: Documentation Version: dev
Severity: Release blocker Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

#18269 introduced the use of unicode_literals.

however their use in kwargs is not supported in versions of python < 2.6.5

see http://bugs.python.org/issue4978 and http://bugs.python.org/issue2646

This python version requirement needs to be documented in both the release notes, and wherever else appropriate (download page?)

Change History (3)

comment:3 by Claude Paroz <claude@…>, 12 years ago

Resolution: fixed
Status: newclosed

In [18b9dc41543616ba5b15d0400564e665b76701d1]:

Fixed #18601 -- Specified that Python minimum version is 2.6.5

This is due to a bug in previous Python 2.6 versions related to
unicode keyword arguments.

Note: See TracTickets for help on using tickets.
Back to Top