PDA

View Full Version : Bug in 'yy' matching?



claytondaley
21st December 2012, 20:07
I'm having an issue with the 'yy' matcher (but not the 'yyyy' matcher) on QDateTime. The code fragment is Python (using PyQt bindings for the Qt application framework), but I assume you can manage any needed translation since the strings and calls are basically the same. FYI the u prefix on u'text' simply forces Python strings to use unicode. Here's my test code:


from PyQt4.QtGui import *
from PyQt4.QtCore import *

date_works_text = u'Monday, 23 April 2012 22:51:41'
date_works_pattern = u'dddd, d MMMM yyyy hh:mm:ss'

date_broken_text = u'Monday, 23 April 12 22:51:41'
date_broken_pattern = u'dddd, d MMMM yy hh:mm:ss'

date_works = QDateTime.fromString(date_works_text, date_works_pattern)
date_broken = QDateTime.fromString(date_broken_text, date_broken_pattern)

print date_works.toString()
print date_broken.toString()

The output on my system is:


D:\Users\...>qDateTimeTest.py
Mon Apr 23 22:51:41 2012
<blank line where the second toString() should be>


It appears to dislike a 'yy' match on '12' even though the pattern is included in the QDateTime format (http://qt-project.org/doc/qt-4.8/qdatetime.html#fromString)

Am I doing something wrong? If not, can someone confirm that this is a Qt issue (versus PyQt) issue? If you can't reproduce it in Qt, I'll check with the PyQt folks. This just seemed like the right place to start since the alternate 'yyyy' works fine.

amleto
21st December 2012, 20:18
I get the same problem in Qt using v4.6.something (c++, not python)