1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
|
========
Examples
========
Removing a class/classmethod/method/function
--------------------------------------------
To signal to a user that a method (staticmethod, classmethod, or regular
instance method) or a class or function is going to be removed at some point
in the future the :py:func:`~debtcollector.removals.remove` function/decorator
can be used to achieve this in a non-destructive manner.
A basic example to do just this (on a method/function):
.. doctest::
>>> from debtcollector import removals
>>> import warnings
>>> warnings.simplefilter('always')
>>> class Car(object):
... @removals.remove
... def start(self):
... pass
...
>>> c = Car()
>>> c.start()
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Using function/method 'Car.start()' is deprecated
A basic example to do just this (on a class):
.. doctest::
>>> from debtcollector import removals
>>> import warnings
>>> warnings.simplefilter('always')
>>> @removals.removed_class("Pinto")
... class Pinto(object):
... pass
...
>>> p = Pinto()
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Using class 'Pinto' (either directly or via inheritance) is deprecated
A basic example to do just this (on a classmethod):
.. doctest::
>>> from debtcollector import removals
>>> import warnings
>>> warnings.simplefilter("once")
>>> class OldAndBusted(object):
... @removals.remove
... @classmethod
... def fix_things(cls):
... pass
...
>>> OldAndBusted.fix_things()
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Using function/method 'OldAndBusted.fix_things()' is deprecated
Removing a instance property
----------------------------
Use the :py:func:`~debtcollector.removals.removed_property` decorator
to signal that an attribute of a class is deprecated.
A basic example to do just this:
.. doctest::
>>> import warnings
>>> warnings.simplefilter("once")
>>> from debtcollector import removals
>>> class OldAndBusted(object):
... @removals.removed_property
... def thing(self):
... return 'old-and-busted'
... @thing.setter
... def thing(self, value):
... pass
... @thing.deleter
... def thing(self):
... pass
...
>>> o = OldAndBusted()
>>> o.thing
'old-and-busted'
>>> o.thing = '2'
>>> del o.thing
.. testoutput::
__main__:1: DeprecationWarning: Reading the 'thing' property is deprecated
__main__:1: DeprecationWarning: Setting the 'thing' property is deprecated
__main__:1: DeprecationWarning: Deleting the 'thing' property is deprecated
Removing a keyword argument
---------------------------
A basic example to do just this (on a classmethod):
.. doctest::
>>> import warnings
>>> warnings.simplefilter("once")
>>> from debtcollector import removals
>>> class OldAndBusted(object):
... @removals.removed_kwarg('resp', message="Please use 'response' instead")
... @classmethod
... def factory(cls, resp=None, response=None):
... response = resp or response
... return response
...
>>> OldAndBusted.factory(resp='super-duper')
'super-duper'
.. testoutput::
__main__:1: DeprecationWarning: Using the 'resp' argument is deprecated: Please use 'response' instead
A basic example to do just this (on a ``__init__`` method):
.. doctest::
>>> import warnings
>>> warnings.simplefilter("once")
>>> from debtcollector import removals
>>> class OldAndBusted(object):
... @removals.removed_kwarg('bleep')
... def __init__(self, bleep=None):
... self.bloop = bleep
...
>>> o = OldAndBusted(bleep=2)
.. testoutput::
__main__:1: DeprecationWarning: Using the 'bleep' argument is deprecated
Changing the default value of a keyword argument
------------------------------------------------
A basic example to do just this:
.. doctest::
>>> import warnings
>>> warnings.simplefilter("once")
>>> from debtcollector import updating
>>> class OldAndBusted(object):
... ip = '127.0.0.1'
... @updating.updated_kwarg_default_value('type', 'http', 'https')
... def url(self, type='http'):
... response = '%s://%s' % (type, self.ip)
... return response
...
>>> OldAndBusted().url()
'http://127.0.0.1'
.. testoutput::
__main__:1: FutureWarning: The http argument is changing its default value to https, please update the code to explicitly set http as the value
A basic classmethod example.
.. note:: the @classmethod decorator is before the debtcollector one
.. doctest::
>>> import warnings
>>> warnings.simplefilter("once")
>>> from debtcollector import updating
>>> class OldAndBusted(object):
... ip = '127.0.0.1'
... @classmethod
... @updating.updated_kwarg_default_value('type', 'http', 'https')
... def url(cls, type='http'):
... response = '%s://%s' % (type, cls.ip)
... return response
...
>>> OldAndBusted.url()
'http://127.0.0.1'
.. testoutput::
__main__:1: FutureWarning: The http argument is changing its default value to https, please update the code to explicitly set http as the value
Moving a function
-----------------
To change the name or location of a regular function use the
:py:func:`~debtcollector.moves.moved_function` function:
.. doctest::
>>> from debtcollector import moves
>>> import warnings
>>> warnings.simplefilter('always')
>>> def new_thing():
... return "new thing"
...
>>> old_thing = moves.moved_function(new_thing, 'old_thing', __name__)
>>> new_thing()
'new thing'
>>> old_thing()
'new thing'
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Function '__main__.old_thing()' has moved to '__main__.new_thing()'
Moving a method
---------------
To move a *instance* method from an existing one to a new one
the :py:func:`~debtcollector.moves.moved_method` function/decorator can be
used to achieve this in a non-destructive manner.
A basic example to do just this:
.. doctest::
>>> from debtcollector import moves
>>> import warnings
>>> warnings.simplefilter('always')
>>> class Cat(object):
... @moves.moved_method('meow')
... def mewow(self):
... return self.meow()
... def meow(self):
... return 'kitty'
...
>>> c = Cat()
>>> c.mewow()
'kitty'
>>> c.meow()
'kitty'
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Method 'Cat.mewow()' has moved to 'Cat.meow()'
Moving a property
-----------------
To move a *instance* property from an existing one to a new one
the :py:func:`~debtcollector.moves.moved_property` function/decorator can be
used to achieve this in a non-destructive manner.
A basic example to do just this:
.. doctest::
>>> from debtcollector import moves
>>> import warnings
>>> warnings.simplefilter('always')
>>> class Dog(object):
... @property
... @moves.moved_property('bark')
... def burk(self):
... return self.bark
... @property
... def bark(self):
... return 'woof'
...
>>> d = Dog()
>>> d.burk
'woof'
>>> d.bark
'woof'
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Property 'Dog.burk' has moved to 'Dog.bark'
Moving a class
--------------
To move a *class* from an existing one to a new one
the :py:func:`~debtcollector.moves.moved_class` type generator function can
be used to achieve this in a non-destructive manner.
A basic example to do just this:
.. doctest::
>>> from debtcollector import moves
>>> import warnings
>>> warnings.simplefilter('always')
>>> class WizBang(object):
... pass
...
>>> OldWizBang = moves.moved_class(WizBang, 'OldWizBang', __name__)
>>> a = OldWizBang()
>>> b = WizBang()
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Class '__main__.OldWizBang' has moved to '__main__.WizBang'
Renaming a keyword argument
---------------------------
To notify the user when a keyword argument has been replaced with a new and
improved keyword argument and the user is still using the old keyword argument
the :py:func:`~debtcollector.renames.renamed_kwarg` function/decorator
can be used to achieve this in a non-destructive manner.
A basic example to do just this:
.. doctest::
>>> from debtcollector import renames
>>> import warnings
>>> warnings.simplefilter('always')
>>> @renames.renamed_kwarg('snizzle', 'nizzle')
... def do_the_deed(snizzle=True, nizzle=True):
... return (snizzle, nizzle)
...
>>> do_the_deed()
(True, True)
>>> do_the_deed(snizzle=False)
(False, True)
>>> do_the_deed(nizzle=False)
(True, False)
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Using the 'snizzle' argument is deprecated, please use the 'nizzle' argument instead
Further customizing the emitted messages
----------------------------------------
It is typically useful to tell the user when a deprecation has started and
when the deprecated item will be offically removed (deleted or other). To
enable this all the currently provided functions this library provides
take a ``message``, ``version`` and ``removal_version`` keyword arguments.
These are used in forming the message that is shown to the user when they
trigger the deprecated activity.
A basic example to do just this:
.. doctest::
>>> from debtcollector import renames
>>> import warnings
>>> warnings.simplefilter('always')
>>> @renames.renamed_kwarg('snizzle', 'nizzle', version="0.5", removal_version="0.7")
... def do_the_deed(snizzle=True, nizzle=True):
... pass
...
>>> do_the_deed(snizzle=False)
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Using the 'snizzle' argument is deprecated in version '0.5' and will be removed in version '0.7', please use the 'nizzle' argument instead
If the ``removal_version`` is unknown the special character ``?`` can be used
instead (to denote that the deprecated activity will be removed sometime in
the future).
A basic example to do just this:
.. doctest::
>>> from debtcollector import renames
>>> import warnings
>>> warnings.simplefilter('always')
>>> @renames.renamed_kwarg('snizzle', 'nizzle', version="0.5", removal_version="?")
... def do_the_deed(snizzle=True, nizzle=True):
... pass
...
>>> do_the_deed(snizzle=False)
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Using the 'snizzle' argument is deprecated in version '0.5' and will be removed in a future version, please use the 'nizzle' argument instead
To further customize the message (with a special postfix) the ``message``
keyword argument can be provided.
A basic example to do just this:
.. doctest::
>>> from debtcollector import renames
>>> import warnings
>>> warnings.simplefilter('always')
>>> @renames.renamed_kwarg('snizzle', 'nizzle', message="Pretty please stop using it")
... def do_the_deed(snizzle=True, nizzle=True):
... pass
...
>>> do_the_deed(snizzle=False)
**Expected output:**
.. testoutput::
__main__:1: DeprecationWarning: Using the 'snizzle' argument is deprecated, please use the 'nizzle' argument instead: Pretty please stop using it
Deprecating anything else
-------------------------
For use-cases which do not fit the above decorators, properties other
provided functionality the final option is to use debtcollectors
the :py:func:`~debtcollector.deprecate` function to make your own
messages (using the message building logic that debtcollector uses itself).
A basic example to do just this:
.. doctest::
>>> import warnings
>>> warnings.simplefilter("always")
>>> import debtcollector
>>> debtcollector.deprecate("This is no longer supported", version="1.0")
.. testoutput::
__main__:1: DeprecationWarning: This is no longer supported in version '1.0'
|