Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
grumpy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
grumpy
Commits
bd4077a4
Commit
bd4077a4
authored
Jan 15, 2017
by
YOU
Committed by
Dylan Trotter
Jan 15, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add _collections to third_party/pypy (deque) (#118)
parent
c8d72d91
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
438 additions
and
5 deletions
+438
-5
lib/_collections.py
lib/_collections.py
+0
-4
third_party/pypy/_collections.py
third_party/pypy/_collections.py
+437
-0
third_party/stdlib/collections.py
third_party/stdlib/collections.py
+1
-1
No files found.
lib/_collections.py
deleted
100644 → 0
View file @
c8d72d91
class
deque
(
object
):
def
__init__
(
self
,
*
_
):
raise
NotImplementedError
third_party/pypy/_collections.py
0 → 100644
View file @
bd4077a4
This diff is collapsed.
Click to expand it.
third_party/stdlib/collections.py
View file @
bd4077a4
...
@@ -10,7 +10,7 @@ list, set, and tuple.
...
@@ -10,7 +10,7 @@ list, set, and tuple.
'''
'''
__all__
=
[
'Counter'
,
'namedtuple'
,
'OrderedDict'
]
# 'deque', 'defaultdict',
__all__
=
[
'Counter'
,
'namedtuple'
,
'OrderedDict'
,
'deque'
]
# 'deque', 'defaultdict',
# For bootstrapping reasons, the collection ABCs are defined in _abcoll.py.
# For bootstrapping reasons, the collection ABCs are defined in _abcoll.py.
# They should however be considered an integral part of collections.py.
# They should however be considered an integral part of collections.py.
import
_abcoll
import
_abcoll
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment