Changes between Version 4 and Version 5 of DjangoOnWindows


Ignore:
Timestamp:
Jun 30, 2008, 10:03:22 AM (16 years ago)
Author:
Ramiro Morales
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoOnWindows

    v4 v5  
    99As of r7805 the test suite is failing in two places when run on Windows + Python 2.5.2:
    1010
    11  * If setuptools is installed, on a test from {{{tests/regressiontests/templates/loaders.py}}} related to trying to load a template from an egg. From a [http://dpaste.com/59930/ report on #django-dev] this test also fails on OS X (OS X Leopard, Python 2.5.1, setuptools 0.6c8).
     11 * If setuptools is installed, on a test from {{{tests/regressiontests/templates/loaders.py}}} related to trying to load a template from an egg. From a [http://dpaste.com/59930/ report] on #django-dev this test also fails on OS X (Leopard, Python 2.5.1, setuptools 0.6c8).
    1212 * On a test from {{{tests/regressiontests/queries/models.py}}} when using the sqlite3 Django DB backend.
    1313
     
    137137#!python
    138138Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit (Intel)] on win32
     139Type "help", "copyright", "credits" or "license" for more information.
     140>>> from sqlite3 import dbapi2
     141>>> print dbapi2.version_info
     142(2, 3, 2)
     143>>> print dbapi2.sqlite_version_info
     144(3, 3, 4)
     145}}}
     146
     147The win32 installer for Python 2.5 has the same combination of pysqlite/sqlite versions and exhibits the same problem:
     148
     149{{{
     150#!python
     151Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit (Intel)] on win32
    139152Type "help", "copyright", "credits" or "license" for more information.
    140153>>> from sqlite3 import dbapi2
Back to Top