File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,17 @@ Fixes
2727* `#557 <https://github.com/dw/mitogen/issues/557 >`_: fix a crash when running
2828 on machines with high CPU counts.
2929
30+ * `#570 <https://github.com/dw/mitogen/issues/570 >`_: the ``firewalld `` module
31+ internally caches a dbus name that changes across ``firewalld `` restarts,
32+ causing a failure if the service is restarted between ``firewalld `` module invocations.
33+
3034* `#575 <https://github.com/dw/mitogen/issues/575 >`_: fix a crash when
3135 rendering an error message to indicate no usable temporary directories could
3236 be found.
3337
34- * `#570 <https://github.com/dw/mitogen/issues/570 >`_: the `` firewalld `` module
35- internally caches a dbus name that changes across `` firewalld `` restarts,
36- causing a failure if the service is restarted between `` firewalld `` module invocations .
38+ * `#576 <https://github.com/dw/mitogen/issues/576 >`_: fix a crash during
39+ startup on SuSE Linux 11, due to an incorrect version compatibility check in
40+ the Mitogen code .
3741
3842
3943Thanks!
Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ def __init__(self, dct):
277277 self [k .decode ()] = v
278278 else :
279279 self [k ] = v
280- elif sys .version_info < (2 , 6 ):
280+ elif sys .version_info < (2 , 6 , 5 ):
281281 def __init__ (self , dct ):
282282 for k , v in dct .iteritems ():
283283 if type (k ) is unicode :
You can’t perform that action at this time.
0 commit comments