14
0
forked from pool/python-pyasn1

Accepting request 90507 from home:HighwayStar:branches:devel:languages:python

Update pyasn1 to 0.1.1, required for pysnmp. Current pysnmp doesnt work with 0.0.13 that avaliable in repository now

OBS-URL: https://build.opensuse.org/request/show/90507
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyasn1?expand=0&rev=4
This commit is contained in:
Sascha Peilicke
2011-11-08 07:09:52 +00:00
committed by Git OBS Bridge
parent 3e4d32f07c
commit db96616086
4 changed files with 32 additions and 4 deletions

View File

@@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Nov 8 06:25:13 UTC 2011 - highwaystar.ru@gmail.com
- updated to 0.1.1
* Hex/bin string initializer to OctetString object reworked
(in a backward-incompatible manner)
* Fixed float() infinity compatibility issue (affects 2.5 and earlier)
* Fixed a bug/typo at Boolean CER encoder
* Major overhawl for Python 2.4 -- 3.2 compatibility
+ get rid of old-style types
+ drop string module usage
+ switch to rich comparation
+ drop explicit long integer type use
+ map()/filter() replaced with list comprehension
+ apply() replaced with */**args
+ switched to use 'key' sort() callback function
+ support both __nonzero__() and __bool__() methods
+ modified not to use py3k-incompatible exception syntax
+ getslice() operator fully replaced with getitem()
+ dictionary operations made 2K/3K compatible
+ base type for encoding substrate and OctetString-based types
is now 'bytes' when running py3k and 'str' otherwise
+ OctetString and derivatives now unicode compliant.
+ OctetString now supports two python-neutral getters: asOcts() & asInts()
+ print OctetString content in hex whenever it is not printable otherwise
+ in test suite, implicit relative import replaced with the absolute one
+ in test suite, string constants replaced with numerics
-------------------------------------------------------------------
Wed Aug 31 16:07:46 UTC 2011 - saschpe@gmx.de