Browse Source

Bump copyright year to 2020

Closes #2510
pull/2305/head
Rapptz 5 years ago
parent
commit
6071607176
  1. 2
      LICENSE
  2. 4
      discord/__init__.py
  3. 2
      discord/__main__.py
  4. 2
      discord/abc.py
  5. 2
      discord/activity.py
  6. 2
      discord/appinfo.py
  7. 2
      discord/asset.py
  8. 2
      discord/audit_logs.py
  9. 2
      discord/backoff.py
  10. 2
      discord/calls.py
  11. 4
      discord/channel.py
  12. 2
      discord/client.py
  13. 2
      discord/colour.py
  14. 2
      discord/context_managers.py
  15. 10
      discord/embeds.py
  16. 2
      discord/emoji.py
  17. 2
      discord/enums.py
  18. 2
      discord/errors.py
  19. 2
      discord/ext/commands/__init__.py
  20. 2
      discord/ext/commands/_types.py
  21. 2
      discord/ext/commands/bot.py
  22. 2
      discord/ext/commands/cog.py
  23. 2
      discord/ext/commands/context.py
  24. 2
      discord/ext/commands/converter.py
  25. 2
      discord/ext/commands/cooldowns.py
  26. 2
      discord/ext/commands/core.py
  27. 2
      discord/ext/commands/errors.py
  28. 2
      discord/ext/commands/help.py
  29. 2
      discord/ext/commands/view.py
  30. 2
      discord/file.py
  31. 2
      discord/flags.py
  32. 2
      discord/gateway.py
  33. 2
      discord/guild.py
  34. 2
      discord/http.py
  35. 2
      discord/invite.py
  36. 2
      discord/iterators.py
  37. 2
      discord/member.py
  38. 2
      discord/message.py
  39. 2
      discord/mixins.py
  40. 2
      discord/object.py
  41. 2
      discord/oggparse.py
  42. 2
      discord/opus.py
  43. 2
      discord/partial_emoji.py
  44. 2
      discord/permissions.py
  45. 2
      discord/player.py
  46. 2
      discord/raw_models.py
  47. 2
      discord/reaction.py
  48. 2
      discord/relationship.py
  49. 2
      discord/role.py
  50. 2
      discord/shard.py
  51. 2
      discord/state.py
  52. 2
      discord/team.py
  53. 2
      discord/user.py
  54. 2
      discord/utils.py
  55. 4
      discord/voice_client.py
  56. 4
      discord/webhook.py
  57. 2
      discord/widget.py

2
LICENSE

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

4
discord/__init__.py

@ -6,7 +6,7 @@ Discord API Wrapper
A basic wrapper for the Discord API.
:copyright: (c) 2015-2019 Rapptz
:copyright: (c) 2015-2020 Rapptz
:license: MIT, see LICENSE for more details.
"""
@ -14,7 +14,7 @@ A basic wrapper for the Discord API.
__title__ = 'discord'
__author__ = 'Rapptz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015-2019 Rapptz'
__copyright__ = 'Copyright 2015-2020 Rapptz'
__version__ = '1.3.0a'
from collections import namedtuple

2
discord/__main__.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/abc.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/activity.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/appinfo.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/asset.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/audit_logs.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/backoff.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/calls.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

4
discord/channel.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
@ -775,7 +775,7 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable):
overwrites: :class:`dict`
A :class:`dict` of target (either a role or a member) to
:class:`PermissionOverwrite` to apply to the channel.
.. versionadded:: 1.3.0
Raises

2
discord/client.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/colour.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/context_managers.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

10
discord/embeds.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
@ -421,15 +421,15 @@ class Embed:
self._fields = [field]
return self
def insert_field_at(self, index, *, name, value, inline=True):
"""Inserts a field before a specified index to the embed.
This function returns the class instance to allow for fluent-style
chaining.
.. versionadded:: 1.2.0
Parameters
-----------
index: :class:`int`

2
discord/emoji.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/enums.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/errors.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/ext/commands/__init__.py

@ -6,7 +6,7 @@ discord.ext.commands
An extension module to facilitate creation of bot commands.
:copyright: (c) 2019 Rapptz
:copyright: (c) 2015-2020 Rapptz
:license: MIT, see LICENSE for more details.
"""

2
discord/ext/commands/_types.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/ext/commands/bot.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/ext/commands/cog.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/ext/commands/context.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/ext/commands/converter.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/ext/commands/cooldowns.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/ext/commands/core.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/ext/commands/errors.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/ext/commands/help.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/ext/commands/view.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/file.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/flags.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/gateway.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/guild.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/http.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/invite.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/iterators.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/member.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/message.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/mixins.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/object.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/oggparse.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/opus.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/partial_emoji.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/permissions.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/player.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/raw_models.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/reaction.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/relationship.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/role.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/shard.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/state.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/team.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/user.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2017 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

2
discord/utils.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

4
discord/voice_client.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
@ -359,7 +359,7 @@ class VoiceClient:
The audio source we're reading from.
after: Callable[[:class:`Exception`], Any]
The finalizer that is called after the stream is exhausted.
This function must have a single parameter, ``error``, that
This function must have a single parameter, ``error``, that
denotes an optional exception that was raised during playing.
Raises

4
discord/webhook.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
@ -420,7 +420,7 @@ class Webhook:
The default avatar of the webhook.
"""
__slots__ = ('id', 'type', 'guild_id', 'channel_id', 'user', 'name',
__slots__ = ('id', 'type', 'guild_id', 'channel_id', 'user', 'name',
'avatar', 'token', '_state', '_adapter')
def __init__(self, data, *, adapter, state=None):

2
discord/widget.py

@ -3,7 +3,7 @@
"""
The MIT License (MIT)
Copyright (c) 2015-2019 Rapptz
Copyright (c) 2015-2020 Rapptz
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

Loading…
Cancel
Save