~ubuntu-branches/debian/sid/sqlalchemy/sid

« back to all changes in this revision

Viewing changes to lib/sqlalchemy/dialects/postgresql/hstore.py

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski
  • Date: 2014-06-27 20:17:13 UTC
  • mfrom: (1.4.28)
  • Revision ID: package-import@ubuntu.com-20140627201713-g6p1kq8q1qenztrv
Tags: 0.9.6-1
* New upstream release
* Remove Python 3.X build tag files, thanks to Matthias Urlichs for the
  patch (closes: #747852)
* python-fdb isn't in the Debian archive yet so default dialect for firebird://
  URLs is changed to obsolete kinterbasdb, thanks to Russell Stuart for the
  patch (closes: #752145)

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 
53
53
 
54
54
def _parse_hstore(hstore_str):
55
 
    """Parse an hstore from it's literal string representation.
 
55
    """Parse an hstore from its literal string representation.
56
56
 
57
57
    Attempts to approximate PG's hstore input parsing rules as closely as
58
58
    possible. Although currently this is not strictly necessary, since the
180
180
    """
181
181
 
182
182
    __visit_name__ = 'HSTORE'
 
183
    hashable = False
183
184
 
184
185
    class comparator_factory(sqltypes.Concatenable.Comparator):
185
186
        """Define comparison operations for :class:`.HSTORE`."""