NOTICE 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. gevent is licensed under the MIT license. See the LICENSE file for the
  2. complete license.
  3. Portions of this software may have other licenses.
  4. =============================================
  5. greentest/2.7
  6. greentest/2.7.8
  7. greentest/2.7pypy
  8. greentest/3.3
  9. greentest/3.4
  10. greentest/3.5
  11. -----------------
  12. Copyright (c) 2001-2016 Python Software Foundation; All Rights Reserved
  13. PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
  14. --------------------------------------------
  15. 1. This LICENSE AGREEMENT is between the Python Software Foundation
  16. ("PSF"), and the Individual or Organization ("Licensee") accessing and
  17. otherwise using this software ("Python") in source or binary form and
  18. its associated documentation.
  19. 2. Subject to the terms and conditions of this License Agreement, PSF hereby
  20. grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
  21. analyze, test, perform and/or display publicly, prepare derivative works,
  22. distribute, and otherwise use Python alone or in any derivative version,
  23. provided, however, that PSF's License Agreement and PSF's notice of copyright,
  24. i.e., "Copyright (c) 2001-2016 Python Software Foundation; All Rights
  25. Reserved" are retained in Python alone or in any derivative version prepared
  26. by Licensee.
  27. 3. In the event Licensee prepares a derivative work that is based on
  28. or incorporates Python or any part thereof, and wants to make
  29. the derivative work available to others as provided herein, then
  30. Licensee hereby agrees to include in any such work a brief summary of
  31. the changes made to Python.
  32. 4. PSF is making Python available to Licensee on an "AS IS"
  33. basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
  34. IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
  35. DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
  36. FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
  37. INFRINGE ANY THIRD PARTY RIGHTS.
  38. 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
  39. FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
  40. A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
  41. OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
  42. 6. This License Agreement will automatically terminate upon a material
  43. breach of its terms and conditions.
  44. 7. Nothing in this License Agreement shall be deemed to create any
  45. relationship of agency, partnership, or joint venture between PSF and
  46. Licensee. This License Agreement does not grant permission to use PSF
  47. trademarks or trade name in a trademark sense to endorse or promote
  48. products or services of Licensee, or any third party.
  49. 8. By copying, installing or otherwise using Python, Licensee
  50. agrees to be bound by the terms and conditions of this License
  51. Agreement.
  52. ============================================
  53. gevent/libuv/_corecffi_source.c
  54. gevent/libuv/_corecffi_cdef.c
  55. Originally based on code from https://github.com/veegee/guv
  56. Copyright (c) 2014 V G
  57. Permission is hereby granted, free of charge, to any person obtaining a copy
  58. of this software and associated documentation files (the "Software"), to
  59. deal in the Software without restriction, including without limitation the
  60. rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  61. sell copies of the Software, and to permit persons to whom the Software is
  62. furnished to do so, subject to the following conditions:
  63. The above copyright notice and this permission notice shall be included in
  64. all copies or substantial portions of the Software.
  65. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  66. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  67. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  68. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  69. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  70. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  71. IN THE SOFTWARE.
  72. ===========================================