You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-9Lines changed: 2 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,27 +25,21 @@ For performance critical 64 bit applications, a simplified version of memory map
25
25
26
26
## Prerequisites
27
27
28
-
* Python 2.4, 2.5 or 2.6
28
+
* Python 2.4, 2.5, 2.6, 2.7 or 3.3
29
29
* OSX, Windows or Linux
30
30
31
31
The package was tested on all of the previously mentioned configurations.
32
32
33
-
34
-
35
33
## Limitations
36
34
37
35
* The memory access is read-only by design.
38
36
* In python below 2.6, memory maps will be created in compatibility mode which works, but creates inefficient memory mappings as they always start at offset 0.
39
-
* It wasn't tested on python 2.7 and 3.x.
40
-
41
37
42
38
## Installing smmap
43
39
44
-
Its easiest to install smmap using the *easy_install* or *pip* program, which is part of the [setuptools](http://peak.telecommunity.com/DevCenter/setuptools) or [pip](http://www.pip-installer.org/en/latest)respectively:
40
+
Its easiest to install smmap using the [pip](http://www.pip-installer.org/en/latest)program:
Copy file name to clipboardExpand all lines: doc/source/intro.rst
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ For performance critical 64 bit applications, a simplified version of memory map
22
22
#############
23
23
Prerequisites
24
24
#############
25
-
* Python 2.4, 2.5 or 2.6
25
+
* Python 2.4, 2.5, 2.6, 2.7 or 3.3
26
26
* OSX, Windows or Linux
27
27
28
28
The package was tested on all of the previously mentioned configurations.
@@ -32,15 +32,12 @@ Limitations
32
32
###########
33
33
* The memory access is read-only by design.
34
34
* In python below 2.6, memory maps will be created in compatibility mode which works, but creates inefficient memory mappings as they always start at offset 0.
35
-
* It wasn't tested on python 2.7 and 3.x.
36
35
37
36
################
38
37
Installing smmap
39
38
################
40
-
Its easiest to install smmap using the *easy_install* or *pip* program, which is part of the `setuptools`_ or `pip`_ respectively::
39
+
Its easiest to install smmap using the *pip* program::
41
40
42
-
$ easy_install smmap
43
-
# or
44
41
$ pip install smmap
45
42
46
43
As the command will install smmap in your respective python distribution, you will most likely need root permissions to authorize the required changes.
0 commit comments