|
15 | 15 |
|
16 | 16 | # this package
|
17 | 17 | from domdf_python_tools import doctools
|
18 |
| -# TODO: test sphinxification of docstrings |
19 | 18 | from domdf_python_tools.doctools import (
|
20 | 19 | base_int_docstrings, base_new_docstrings, container_docstrings, operator_docstrings, prettify_docstrings
|
21 | 20 | )
|
22 | 21 |
|
| 22 | +# TODO: test sphinxification of docstrings |
| 23 | + |
23 | 24 |
|
24 | 25 | class Cafe:
|
25 | 26 | """
|
@@ -347,157 +348,157 @@ def demo_function():
|
347 | 348 | @prettify_docstrings
|
348 | 349 | class Klasse:
|
349 | 350 |
|
350 |
| - def __delattr__(self, **kwargs): |
| 351 | + def __delattr__(self, **kwargs): # type: ignore |
351 | 352 | ... # pragma: no cover
|
352 | 353 |
|
353 |
| - def __dir__(self): |
| 354 | + def __dir__(self): # type: ignore |
354 | 355 | ... # pragma: no cover
|
355 | 356 |
|
356 |
| - def __eq__(self, **kwargs): |
| 357 | + def __eq__(self, **kwargs): # type: ignore |
357 | 358 | ... # pragma: no cover
|
358 | 359 |
|
359 |
| - def __getattribute__(self, **kwargs): |
| 360 | + def __getattribute__(self, **kwargs): # type: ignore |
360 | 361 | ... # pragma: no cover
|
361 | 362 |
|
362 |
| - def __ge__(self): |
| 363 | + def __ge__(self): # type: ignore |
363 | 364 | ... # pragma: no cover
|
364 | 365 |
|
365 |
| - def __gt__(self): |
| 366 | + def __gt__(self): # type: ignore |
366 | 367 | ... # pragma: no cover
|
367 | 368 |
|
368 |
| - def __hash__(self): |
| 369 | + def __hash__(self): # type: ignore |
369 | 370 | ... # pragma: no cover
|
370 | 371 |
|
371 |
| - def __lt__(self): |
| 372 | + def __lt__(self): # type: ignore |
372 | 373 | ... # pragma: no cover
|
373 | 374 |
|
374 |
| - def __le__(self): |
| 375 | + def __le__(self): # type: ignore |
375 | 376 | ... # pragma: no cover
|
376 | 377 |
|
377 |
| - def __ne__(self, **kwargs): |
| 378 | + def __ne__(self, **kwargs): # type: ignore |
378 | 379 | ... # pragma: no cover
|
379 | 380 |
|
380 |
| - def __setattr__(self, **kwargs): |
| 381 | + def __setattr__(self, **kwargs): # type: ignore |
381 | 382 | ... # pragma: no cover
|
382 | 383 |
|
383 |
| - def __sizeof__(self): |
| 384 | + def __sizeof__(self): # type: ignore |
384 | 385 | ... # pragma: no cover
|
385 | 386 |
|
386 |
| - def __str__(self): |
| 387 | + def __str__(self): # type: ignore |
387 | 388 | ... # pragma: no cover
|
388 | 389 |
|
389 |
| - def __contains__(self): |
| 390 | + def __contains__(self): # type: ignore |
390 | 391 | ... # pragma: no cover
|
391 | 392 |
|
392 |
| - def __getitem__(self): |
| 393 | + def __getitem__(self): # type: ignore |
393 | 394 | ... # pragma: no cover
|
394 | 395 |
|
395 |
| - def __setitem__(self): |
| 396 | + def __setitem__(self): # type: ignore |
396 | 397 | ... # pragma: no cover
|
397 | 398 |
|
398 |
| - def __delitem__(self): |
| 399 | + def __delitem__(self): # type: ignore |
399 | 400 | ... # pragma: no cover
|
400 | 401 |
|
401 |
| - def __and__(self): |
| 402 | + def __and__(self): # type: ignore |
402 | 403 | ... # pragma: no cover
|
403 | 404 |
|
404 |
| - def __add__(self): |
| 405 | + def __add__(self): # type: ignore |
405 | 406 | ... # pragma: no cover
|
406 | 407 |
|
407 |
| - def __abs__(self): |
| 408 | + def __abs__(self): # type: ignore |
408 | 409 | ... # pragma: no cover
|
409 | 410 |
|
410 |
| - def __divmod__(self): |
| 411 | + def __divmod__(self): # type: ignore |
411 | 412 | ... # pragma: no cover
|
412 | 413 |
|
413 |
| - def __floordiv__(self): |
| 414 | + def __floordiv__(self): # type: ignore |
414 | 415 | ... # pragma: no cover
|
415 | 416 |
|
416 |
| - def __invert__(self): |
| 417 | + def __invert__(self): # type: ignore |
417 | 418 | ... # pragma: no cover
|
418 | 419 |
|
419 |
| - def __lshift__(self): |
| 420 | + def __lshift__(self): # type: ignore |
420 | 421 | ... # pragma: no cover
|
421 | 422 |
|
422 |
| - def __mod__(self): |
| 423 | + def __mod__(self): # type: ignore |
423 | 424 | ... # pragma: no cover
|
424 | 425 |
|
425 |
| - def __mul__(self): |
| 426 | + def __mul__(self): # type: ignore |
426 | 427 | ... # pragma: no cover
|
427 | 428 |
|
428 |
| - def __neg__(self): |
| 429 | + def __neg__(self): # type: ignore |
429 | 430 | ... # pragma: no cover
|
430 | 431 |
|
431 |
| - def __or__(self): |
| 432 | + def __or__(self): # type: ignore |
432 | 433 | ... # pragma: no cover
|
433 | 434 |
|
434 |
| - def __pos__(self): |
| 435 | + def __pos__(self): # type: ignore |
435 | 436 | ... # pragma: no cover
|
436 | 437 |
|
437 |
| - def __pow__(self): |
| 438 | + def __pow__(self): # type: ignore |
438 | 439 | ... # pragma: no cover
|
439 | 440 |
|
440 |
| - def __radd__(self): |
| 441 | + def __radd__(self): # type: ignore |
441 | 442 | ... # pragma: no cover
|
442 | 443 |
|
443 |
| - def __rand__(self): |
| 444 | + def __rand__(self): # type: ignore |
444 | 445 | ... # pragma: no cover
|
445 | 446 |
|
446 |
| - def __rdivmod__(self): |
| 447 | + def __rdivmod__(self): # type: ignore |
447 | 448 | ... # pragma: no cover
|
448 | 449 |
|
449 |
| - def __rfloordiv__(self): |
| 450 | + def __rfloordiv__(self): # type: ignore |
450 | 451 | ... # pragma: no cover
|
451 | 452 |
|
452 |
| - def __rlshift__(self): |
| 453 | + def __rlshift__(self): # type: ignore |
453 | 454 | ... # pragma: no cover
|
454 | 455 |
|
455 |
| - def __rmod__(self): |
| 456 | + def __rmod__(self): # type: ignore |
456 | 457 | ... # pragma: no cover
|
457 | 458 |
|
458 |
| - def __rmul__(self): |
| 459 | + def __rmul__(self): # type: ignore |
459 | 460 | ... # pragma: no cover
|
460 | 461 |
|
461 |
| - def __ror__(self): |
| 462 | + def __ror__(self): # type: ignore |
462 | 463 | ... # pragma: no cover
|
463 | 464 |
|
464 |
| - def __rpow__(self): |
| 465 | + def __rpow__(self): # type: ignore |
465 | 466 | ... # pragma: no cover
|
466 | 467 |
|
467 |
| - def __rrshift__(self): |
| 468 | + def __rrshift__(self): # type: ignore |
468 | 469 | ... # pragma: no cover
|
469 | 470 |
|
470 |
| - def __rshift__(self): |
| 471 | + def __rshift__(self): # type: ignore |
471 | 472 | ... # pragma: no cover
|
472 | 473 |
|
473 |
| - def __rsub__(self): |
| 474 | + def __rsub__(self): # type: ignore |
474 | 475 | ... # pragma: no cover
|
475 | 476 |
|
476 |
| - def __rtruediv__(self): |
| 477 | + def __rtruediv__(self): # type: ignore |
477 | 478 | ... # pragma: no cover
|
478 | 479 |
|
479 |
| - def __rxor__(self): |
| 480 | + def __rxor__(self): # type: ignore |
480 | 481 | ... # pragma: no cover
|
481 | 482 |
|
482 |
| - def __sub__(self): |
| 483 | + def __sub__(self): # type: ignore |
483 | 484 | ... # pragma: no cover
|
484 | 485 |
|
485 |
| - def __truediv__(self): |
| 486 | + def __truediv__(self): # type: ignore |
486 | 487 | ... # pragma: no cover
|
487 | 488 |
|
488 |
| - def __xor__(self): |
| 489 | + def __xor__(self): # type: ignore |
489 | 490 | ... # pragma: no cover
|
490 | 491 |
|
491 |
| - def __float__(self): |
| 492 | + def __float__(self): # type: ignore |
492 | 493 | ... # pragma: no cover
|
493 | 494 |
|
494 |
| - def __int__(self): |
| 495 | + def __int__(self): # type: ignore |
495 | 496 | ... # pragma: no cover
|
496 | 497 |
|
497 |
| - def __repr__(self): |
| 498 | + def __repr__(self): # type: ignore |
498 | 499 | ... # pragma: no cover
|
499 | 500 |
|
500 |
| - def __bool__(self): |
| 501 | + def __bool__(self): # type: ignore |
501 | 502 | ... # pragma: no cover
|
502 | 503 |
|
503 | 504 |
|
|
0 commit comments