mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Minor updates
This commit is contained in:
parent
a7695dd06f
commit
25f29ca6b0
6 changed files with 270 additions and 269 deletions
|
|
@ -51,6 +51,11 @@ class Cache(object):
|
|||
class BigArray(list):
|
||||
"""
|
||||
List-like class used for storing large amounts of data (disk cached)
|
||||
|
||||
>>> _ = BigArray(xrange(100000))
|
||||
>>> _[20] = 0
|
||||
>>> _[100]
|
||||
100
|
||||
"""
|
||||
|
||||
def __init__(self, items=None):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue