From owner-freebsd-python@FreeBSD.ORG Fri Dec 18 19:30:07 2009 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CCFA1065672 for ; Fri, 18 Dec 2009 19:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 531578FC19 for ; Fri, 18 Dec 2009 19:30:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nBIJU7j5051514 for ; Fri, 18 Dec 2009 19:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBIJU7GB051512; Fri, 18 Dec 2009 19:30:07 GMT (envelope-from gnats) Date: Fri, 18 Dec 2009 19:30:07 GMT Message-Id: <200912181930.nBIJU7GB051512@freefall.freebsd.org> To: freebsd-python@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/137782: commit references a PR X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Dec 2009 19:30:07 -0000 The following reply was made to PR ports/137782; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/137782: commit references a PR Date: Fri, 18 Dec 2009 19:22:22 +0000 (UTC) pav 2009-12-18 19:22:02 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/py-postgresql Makefile distinfo pkg-descr pkg-plist Log: Pure Python All code, at first, is written in pure Python so that py-postgresql will work anywhere that you can install Python 3. Optimizations in C are made where needed, but are always optional. Prepared Statements Using the PG-API interface, protocol-level prepared statements may be created and used multiple times. db.prepare(sql)(*args) COPY Support Use the convenient COPY interface to directly copy data from one connection to another. No intermediate files or tricks are necessary. Arrays and Composite Typescw Arrays and composites are fully supported. Queries requesting them will returns objects that provide access to the elements within. "pg_python" Quick Console Get a Python console with a connection to PostgreSQL for quick tests and simple scripts. WWW: http://python.projects.postgresql.org/ PR: ports/137782 Submitted by: Volodymyr Kostyrko Revision Changes Path 1.818 +1 -0 ports/databases/Makefile 1.1 +27 -0 ports/databases/py-postgresql/Makefile (new) 1.1 +3 -0 ports/databases/py-postgresql/distinfo (new) 1.1 +22 -0 ports/databases/py-postgresql/pkg-descr (new) 1.1 +258 -0 ports/databases/py-postgresql/pkg-plist (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"