This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: odbc module crashes Python interpretter
Type: crash Stage:
Components: Windows Versions: Python 3.1
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: Maurice.Maneschi, brett.cannon
Priority: normal Keywords:

Created on 2011-02-17 21:25 by Maurice.Maneschi, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg128756 - (view) Author: Maurice Maneschi (Maurice.Maneschi) Date: 2011-02-17 21:25
In Python 3.1.3 under Windows XP sp3, I enter the following under the interpretter:

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\MauriceM>c:\Python31\python.exe
Python 3.1.3 (r313:86834, Nov 27 2010, 18:30:53) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import odbc
>>> c = odbc.odbc('Quantum/Quantum/Quantum3')
>>> dir(c)

C:\Documents and Settings\MauriceM>

At that point, Windows pops up a crash notification and asked if MS should be informed.

Questions
=========
1) Is ODBC no longer supported?
msg128766 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2011-02-17 23:07
odbc is not a module provided by Python.
History
Date User Action Args
2022-04-11 14:57:13adminsetgithub: 55446
2011-02-17 23:07:34brett.cannonsetstatus: open -> closed

nosy: + brett.cannon
messages: + msg128766

resolution: not a bug
2011-02-17 21:25:58Maurice.Maneschicreate