[Python-modules-commits] r24782 - in packages/bunch/trunk/debian (compat control)
laarmen-guest at users.alioth.debian.org
laarmen-guest at users.alioth.debian.org
Thu Jun 13 08:13:23 UTC 2013
Date: Thursday, June 13, 2013 @ 08:13:21
Author: laarmen-guest
Revision: 24782
Change dh compat to 9
Add a short code example to the description
Modified:
packages/bunch/trunk/debian/compat
packages/bunch/trunk/debian/control
Modified: packages/bunch/trunk/debian/compat
===================================================================
--- packages/bunch/trunk/debian/compat 2013-06-13 05:19:53 UTC (rev 24781)
+++ packages/bunch/trunk/debian/compat 2013-06-13 08:13:21 UTC (rev 24782)
@@ -1 +1 @@
-8
+9
Modified: packages/bunch/trunk/debian/control
===================================================================
--- packages/bunch/trunk/debian/control 2013-06-13 05:19:53 UTC (rev 24781)
+++ packages/bunch/trunk/debian/control 2013-06-13 08:13:21 UTC (rev 24782)
@@ -4,7 +4,7 @@
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: Simon Chopin <chopin.simon at gmail.com>
Build-Depends:
- debhelper (>= 8.1),
+ debhelper (>= 9),
python-all (>= 2.6.6-3~),
python-setuptools
Standards-Version: 3.9.4
@@ -19,3 +19,8 @@
Description: Dot-accessible Python dictionary (a la JavaScript objects)
Bunch is a subclass of Python's dict that supports attribute-style
access, a la JavaScript.
+ .
+ For instance, you can have the following:
+ >>> b = bunch.bunchify({"foo":"bar"}
+ >>> b.foo
+ 'bar'
More information about the Python-modules-commits
mailing list