Your message dated Sat, 26 Jul 2008 19:25:27 +0200
with message-id <[EMAIL PROTECTED]>
and subject line fixed in 0.4.7-1
has caused the Debian Bug report #488849,
regarding python-sqlalchemy: add support for postgres CIDR type
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
488849: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=488849
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: python-sqlalchemy
Version: 0.4.6-1
Severity: wishlist
Tags: patch
Sqlalchemy complains any time it sees the postgresql CIDR type (which
only differs from an INET in the fact that it checks that zero-bits in
the netmask are zero-bits in the address).
--- sqlalchemy/databases/postgres.py 2008-07-01 10:13:02.000000000 -0600
+++ sqlalchemy/databases/postgres.py 2008-07-01 10:14:10.000000000 -0600
@@ -32,6 +32,10 @@
def get_col_spec(self):
return "INET"
+class PGCidr(sqltypes.TypeEngine):
+ def get_col_spec(self):
+ return "CIDR"
+
class PGMacAddr(sqltypes.TypeEngine):
def get_col_spec(self):
return "MACADDR"
@@ -200,6 +204,7 @@
'float' : PGFloat,
'real' : PGFloat,
'inet': PGInet,
+ 'cidr': PGCidr,
'macaddr': PGMacAddr,
'double precision' : PGFloat,
'timestamp' : PGDateTime,
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.22-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages python-sqlalchemy depends on:
ii python 2.4.4-6 An interactive high-level object-o
ii python-support 0.7.6 automated rebuilding support for p
python-sqlalchemy recommends no packages.
-- no debconf information
--
Eldon Koyle
System Administration Operations
Information Technology
Utah State University
--
BOFH excuse #284:
Electrons on a bender
--- End Message ---
--- Begin Message ---
Source: sqlalchemy
Source-Version: 0.4.7-1
Bug has been fixed in new upstream release. 0.4.7-1 was uploaded to
unstable (I forgot to close this bug in the changelog)
--
:wq!
pgpOw9633jf1Y.pgp
Description: PGP signature
--- End Message ---