~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Add bzrlib.pyutils, which has get_named_object, a wrapper around __import__.

This is used to replace various ad hoc implementations of the same logic,
notably the version used in registry's _LazyObjectGetter which had a bug when
getting a module without also getting a member.  And of course, this new
function has unit tests, unlike the replaced code.

This also adds a KnownHooksRegistry subclass to provide a more natural home for
some other logic.

I'm not thrilled about the name of the new module or the new functions, but it's
hard to think of good names for such generic functionality.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
bzr 2.3b2
9
9
#########
10
10
 
11
 
:2.3.b2: NOT RELEASED YET
 
11
:2.3b2: NOT RELEASED YET
12
12
 
13
13
Compatibility Breaks
14
14
********************
28
28
API Changes
29
29
***********
30
30
 
 
31
* ``known_hooks_key_to_parent_and_attribute`` in ``bzrlib.hooks`` has been
 
32
  deprecated in favour of ``known_hooks.key_to_parent_and_attribute`` in
 
33
  the same module.  (Andrew Bennetts)
 
34
 
31
35
Internals
32
36
*********
33
37