From 0b06ebbf40ce62d8ad3d8738b90f8953b13dbba4 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 31 Jul 2014 13:06:39 +0100 Subject: [PATCH] Parse errocodes for PG 9.3 too There is no new errcode defined so no need to release this as a change, only change the docs. --- doc/src/errorcodes.rst | 2 +- scripts/make_errorcodes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/errorcodes.rst b/doc/src/errorcodes.rst index 3fdd5499..f659023d 100644 --- a/doc/src/errorcodes.rst +++ b/doc/src/errorcodes.rst @@ -50,7 +50,7 @@ An example of the available constants defined in the module: '42P01' Constants representing all the error values defined by PostgreSQL versions -between 8.1 and 9.2 are included in the module. +between 8.1 and 9.3 are included in the module. .. autofunction:: lookup(code) diff --git a/scripts/make_errorcodes.py b/scripts/make_errorcodes.py index fa45ea48..4da063ef 100755 --- a/scripts/make_errorcodes.py +++ b/scripts/make_errorcodes.py @@ -32,7 +32,7 @@ def main(): file_start = read_base_file(filename) classes, errors = fetch_errors( - ['8.1', '8.2', '8.3', '8.4', '9.0', '9.1', '9.2']) + ['8.1', '8.2', '8.3', '8.4', '9.0', '9.1', '9.2', '9.3']) f = open(filename, "w") for line in file_start: