File: __builtin_constants__.py

package info (click to toggle)
kdevelop-python 24.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 12,640 kB
  • sloc: python: 183,048; cpp: 18,798; xml: 140; sh: 14; makefile: 9
file content (29 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (6)
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
#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
"""
Built-in Constants
==================

A small number of constants live in the built-in namespace.  They are:

"""
"""
The sole value of :attr:`types.NoneType`.  ``None`` is frequently used to
represent the absence of a value, as when default arguments are not passed to a
function.

"""
NotImplemented = None
"""
Special value used in conjunction with extended slicing syntax.


"""
Ellipsis = None
"""
This constant is true if Python was not started with an :option:`-O` option.
See also the :keyword:`assert` statement.


"""
quitcode = None