summaryrefslogtreecommitdiff
path: root/PEP.txt
diff options
context:
space:
mode:
Diffstat (limited to 'PEP.txt')
-rw-r--r--PEP.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/PEP.txt b/PEP.txt
new file mode 100644
index 0000000..3395c7f
--- /dev/null
+++ b/PEP.txt
@@ -0,0 +1,25 @@
+"""
+Abstract
+
+ Python currently has powerful primitives to construct multi-threaded
+ applications but parallelizing simple functions requires a lot of
+ setup work i.e. explicitly launching threads, constructing a
+ work/results queue, and waiting for completion or some other
+ termination condition (e.g. exception, success). It is also hard to
+ manage the global . This PEP proposes the addition
+
+
+ Python currently distinguishes between two kinds of integers
+ (ints): regular or short ints, limited by the size of a C long
+ (typically 32 or 64 bits), and long ints, which are limited only
+ by available memory. When operations on short ints yield results
+ that don't fit in a C long, they raise an error. There are some
+ other distinctions too. This PEP proposes to do away with most of
+ the differences in semantics, unifying the two types from the
+ perspective of the Python user.
+
+
+Abstract
+
+
+""" \ No newline at end of file