Changes between Version 17 and Version 18 of Ticket #21721


Ignore:
Timestamp:
Jan 12, 2014, 6:05:42 PM (10 years ago)
Author:
Marc Tamlyn
Comment:

The pdistlib error is in fact a lack of dogfood in python itself: http://bugs.python.org/issue20229

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21721 – Description

    v17 v18  
    55The current state of things is as follows:
    66
    7 - There are a couple of warnings printed at startup time. These relate to API changes in plistlib (which is OSX specific) and codecs (universal newlines reading of files has been deprecated).
     7- ~~There are a couple of warnings printed at startup time. These relate to API changes in plistlib (which is OSX specific) and codecs (universal newlines reading of files has been deprecated).~~
    88- ~~Our usage of `HTMLParser` should now always specify the value of `convert_charrefs` as it's default will change in Py3.5. This is slightly problematic as Py2.7 does not have this kwarg so we can't universally apply it. Perhaps the best option is a six-like wrapper.~~
    99- `django.utils.module_loading. module_has_submodule` has some issues with eggs.  `sys.meta_path` is giving us `importlib` as a finder. `importlib.find_module` is deferred to `importlib.find_spec` (new in py3.4), which throws an error (`ImportError: spec missing loader`).
Back to Top