diff options
| -rw-r--r-- | misc/Makefile.in | 4 | ||||
| -rw-r--r-- | misc/paths.py.in | 10 |
2 files changed, 1 insertions, 13 deletions
diff --git a/misc/Makefile.in b/misc/Makefile.in index c03a9deb4..9de6b71b5 100644 --- a/misc/Makefile.in +++ b/misc/Makefile.in @@ -52,10 +52,8 @@ SETUPINSTOPTS= --install-lib $(DESTDIR)$(PYTHONLIBDIR) \ SETUPCMD= setup.py --quiet install $(SETUPINSTOPTS) EMAILPKG= email-2.5.6 -JACODECSPKG= JapaneseCodecs-1.4.11 -KOCODECSPKG= KoreanCodecs-2.0.5 -PACKAGES= $(EMAILPKG) $(JACODECSPKG) $(KOCODECSPKG) +PACKAGES= $(EMAILPKG) # Modes for directories and executables created by the install # process. Default to group-writable directories but diff --git a/misc/paths.py.in b/misc/paths.py.in index 4ec49d9b4..33c73b484 100644 --- a/misc/paths.py.in +++ b/misc/paths.py.in @@ -48,16 +48,6 @@ sitedir = os.path.join(sys.prefix, 'lib', 'python'+sys.version[:3], 'site-packages') sys.path.append(sitedir) - -# In a normal interactive Python environment, the japanese.pth and korean.pth -# files would be imported automatically. But because we inhibit the importing -# of the site module, we need to be explicit about importing these codecs. -import japanese -# As of KoreanCodecs 2.0.5, you had to do the second import to get the Korean -# codecs installed, however leave the first import in there in case an upgrade -# changes this. -import korean -import korean.aliases # Arabic and Hebrew (RFC-1556) encoding aliases. (temporary solution) import encodings.aliases encodings.aliases.aliases.update({ |
