Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
blog about issues with some modules
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Aug 17, 2015
1 parent 81995d8 commit d397c91
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _doc/sphinxdoc/source/blog/2015/2015-07-14-futures.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@


.. index:: futures
.. index:: futures, issue

.. blogpost::
:title: Modules futures, concurrent
:keywords: futures, concurrent
:keywords: futures, concurrent, issue
:date: 2015-07-14
:categories: modules

Expand Down
43 changes: 43 additions & 0 deletions _doc/sphinxdoc/source/blog/2015/2015-08-17_babel13.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@


.. index:: babel, sphinx, issue

.. blogpost::
:title: Issue with module babel
:keywords: babel, sphinx, exception, issue
:date: 2015-08-17
:categories: sphinx, modules

I went through the following issue with the latest version
of `babel <https://pypi.python.org/pypi/Babel>`_ (2.0).
It gave me the following exception::
File "c:\python34_x64\lib\site-packages\sphinx\__init__.py", line 51, in main
sys.exit(build_main(argv))
File "c:\python34_x64\lib\site-packages\sphinx\__init__.py", line 61, in build_main
from sphinx import cmdline
File "c:\python34_x64\lib\site-packages\sphinx\cmdline.py", line 23, in <module>
from sphinx.application import Sphinx
File "c:\python34_x64\lib\site-packages\sphinx\application.py", line 37, in <module>
from sphinx.builders import BUILTIN_BUILDERS
File "c:\python34_x64\lib\site-packages\sphinx\builders\__init__.py", line 23, in <module>
from sphinx.util import i18n, path_stabilize
File "c:\python34_x64\lib\site-packages\sphinx\util\i18n.py", line 15, in <module>
from babel.messages.pofile import read_po
File "c:\python34_x64\lib\site-packages\babel\messages\__init__.py", line 12, in <module>
from babel.messages.catalog import *
File "c:\python34_x64\lib\site-packages\babel\messages\catalog.py", line 23, in <module>
from babel.dates import format_datetime
File "c:\python34_x64\lib\site-packages\babel\dates.py", line 28, in <module>
from babel.util import UTC, LOCALTZ
File "c:\python34_x64\lib\site-packages\babel\util.py", line 278, in <module>
from babel import localtime
File "c:\python34_x64\lib\site-packages\babel\localtime\__init__.py", line 21, in <module>
from babel.localtime._win32 import _get_localzone
File "c:\python34_x64\lib\site-packages\babel\localtime\_win32.py", line 18, in <module>
tz_names = get_global('windows_zone_mapping')
File "c:\python34_x64\lib\site-packages\babel\core.py", line 58, in get_global
_global_data = pickle.load(fileobj)
TypeError: an integer is required (got type str)
The exception disappeared after I reverted to babel 1.3.
15 changes: 15 additions & 0 deletions _doc/sphinxdoc/source/blog/2015/2015-08-17_goslate.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@


.. index:: goslate, issue

.. blogpost::
:title: Issue with module goslate 1.5
:keywords: goslate, encoding, issue
:date: 2015-08-17
:categories: modules

I had issues installing
`goslate <https://pypi.python.org/pypi/goslate>`_ 1.5.
It raises an encoding issues while reading
file *README.rst*.

0 comments on commit d397c91

Please sign in to comment.