summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-05 21:55:55 (GMT)
committerGuido van Rossum <guido@python.org>1996-12-05 21:55:55 (GMT)
commita0a69b8b429f3d4c91f1c432247cfda017505976 (patch)
tree9288dc602d41bd08c0ab5f5acb279ce8489f1131 /Python
parent685a38ea945431d1bad20ee07222a24b4553e346 (diff)
downloadcpython-a0a69b8b429f3d4c91f1c432247cfda017505976.zip
cpython-a0a69b8b429f3d4c91f1c432247cfda017505976.tar.gz
cpython-a0a69b8b429f3d4c91f1c432247cfda017505976.tar.bz2
Experimental new implementation of dictionary comparison. This
defines that a shorter dictionary is always smaller than a longer one. For dictionaries of the same size, the smallest differing element determines the outcome (which yields the same results as before, without explicit sorting).
Diffstat (limited to 'Python')
0 files changed, 0 insertions, 0 deletions
<andy.shaw@digia.com> Reviewed-by: Janne Anttila <janne.anttila@digia.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> * QNetwork: fix compilation with no opensslMartin Petersson2012-05-221-1/+1 | | | | | | Change-Id: Id637dd1155c46ffc75563812b8c9d5f062e76e22 Reviewed-by: Sergio Ahumada <sergio.ahumada@nokia.com> Reviewed-by: Richard J. Moore <rich@kde.org> * Symbian: inputcontext reports pointer events to FEP during inline editLauri Malmi2012-05-213-5/+35 | | | | | | | | | | | | | | | QCoeFepInputContext::mouseHandler() must report pointer events to FEP by calling CAknExtendedInputCapabilities::ReportEventL( CAknExtendedInputCapabilities::MAknEventObserver:: EPointerEventReceived). Based on this event FEP commits inline edit properly and sends notification peninputserver/VKB. Earlier QCoeFepInputContext:: mouseHandler() called CCoeFep::CancelTransaction() direclty which lead to inconsistent inline edit state between FEP and VKB. Task-number: ou1cimx1#991638 Change-Id: I90641ffd5aed97b27f2ca2328c0296e14b12f319 Reviewed-by: Pasi Pentikäinen <ext-pasi.a.pentikainen@nokia.com> * QNetworkAccessManager: Read all from socket on remote host closeMartin Petersson2012-05-211-0/+26 | | | | | | | | | | When we get a remoteHostClosed we should try to read everything from the socket before we close the channel. cherry-picked from commit 27bc9945a84c6f6d8e0d2a33183c3a6e9b2978d8 Change-Id: Ia1b64dbd991265ce0ce4c4d21f4df323133e2b07 Reviewed-by: Shane Kearns <shane.kearns@accenture.com> * QNX: Special case z-ordering of the QDesktopWidget windowSean Harmer2012-05-211-1/+11 | | | | | | | | | | | | | | | | | The assumption that window creation order implies correct initial z-ordering is broken when dealing with certain window types. In this commit we special case the QDesktopWidget's window which maybe created after normal application windows yet still need to be layered below them. Without this fix we may accidentaly activate the Desktop window when the blackberry navigator service sends an event to activate the window group. That results in broken focus handling. Backport of b09d601261244395450557187adeed6717f25155 (qtbase) Change-Id: If7c4b1ac9d99dc5a9b7d0e7b3e2080c648cf85b3 Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com> * QRegExp: fix autotest, fix usage of uninitialized valuesGiuseppe D'Angelo2012-05-212-4/+2 | | | | | | | | | | | | | | | | | | | | | | | | A (probable) typo was causing the code dealing with anchors to use uninitialized values. This used to work by chance, but was indeed detected by Valgrind f.i. when running tst_qregexp -- the indexIn test on anc11 data reported: ==3015== Conditional jump or move depends on uninitialised value(s) ==3015== at 0x514B4EA: PeppeQt::QRegExpMatchState::testAnchor(int, int, int const*) (qregexp.cpp:1813) [...] ==3015== Uninitialised value was created by a stack allocation ==3015== at 0x514B3EB: PeppeQt::QRegExpMatchState::testAnchor(int, int, int const*) (qregexp.cpp:1803) Fixing the code also makes the aforementioned test to succeed, therefore the #if 0 sections can be droppped. Backport of commits 281771ee201e591d4f40a161b93c71914b1b38f2 and 1fe7e557d75962c9c79cc344037a02ed50369430 from qtbase. Change-Id: I4d6cffdae737def1a47e72b46e40979e0aee1719 Reviewed-by: Andy Shaw <andy.shaw@digia.com> Reviewed-by: hjk <qthjk@ovi.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> * Fix memory leak in qdeclarativevisualdatamodel.Andrew den Exter2012-05-211-2/+4 | | | | | | | | | | | Parent order was backwards, the inner context was parented to the outer context, and then the inner context was reparented to the delegate. Parent the outer context to inner context so both are deleted when the delegate is deleted. Task-number: QTBUG-25784 Change-Id: I1d6cd4dfc2530424535a7e00164563d9b4aaa513 Reviewed-by: Martin Jones <martin.jones@nokia.com> * Added changes info to changes-4.8.2Juhani Taipale2012-05-201-14/+172 | | | | | | Change-Id: Ib6b89d0cd349846ecdfb272dc325b0c140b2f872 Reviewed-by: Lars Knoll <lars.knoll@nokia.com> Reviewed-by: Simo Fält <simo.falt@nokia.com> * Fix cases where functions are called with a drive and no slashAndy Shaw2012-05-16