Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 38a1d66

Browse files
author
denfromufa
authored
Update index.html
1 parent b2f686f commit 38a1d66

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

index.html

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
<style type="text/css"><!--
55

66
body {
7-
font: 8pt/16pt georgia,verdana;
7+
font: 12pt/18pt georgia,verdana;
88
text-decoration: none;
99
color: #555753;
1010
background: #ffffff;
1111
margin: 0px;
1212
}
1313

1414
p {
15-
font: 8pt/16pt georgia;
15+
font: 12pt/18pt georgia;
1616
}
1717

1818
h1 {
19-
font: bold 14pt;
19+
font: bold 16pt;
2020
color: #000044;
2121

2222
background-color: #EFEFFF;
@@ -68,13 +68,13 @@
6868
}
6969

7070
li {
71-
font: 8pt/16pt georgia,verdana;
71+
font: 12pt/18pt georgia,verdana;
7272
text-decoration: none;
7373
color: #555753;
7474
}
7575

7676
.spacer {
77-
font: bold 14pt;
77+
font: bold 16pt;
7878
}
7979

8080
.menu {
@@ -103,33 +103,31 @@
103103
</td>-->
104104
<td align="left" valign="top">
105105
<h1>Python for .NET</h1>
106-
<p> Python for .NET is a package that gives Python programmers
107-
nearly seamless integration with the .NET Common Language Runtime
108-
(CLR) and provides a powerful application scripting tool for .NET
106+
<p> Python for .NET (pythonnet) is a package that gives Python programmers
107+
nearly seamless integration with the .NET 4.0+ Common Language Runtime
108+
(CLR) on Windows and Mono runtime on Linux and OSX.
109+
Python for .NET provides a powerful application scripting tool for .NET
109110
developers. Using this package you can script .NET applications or
110111
build entire applications in Python, using .NET services and
111-
components written in any language that targets the CLR (Managed
112-
C++, C#, VB, JScript). </p>
112+
components written in any language that targets the CLR (C#, VB.NET, F#, C++/CLI).
113+
</p>
113114
<p> Note that this package does <em>not</em> implement Python as a
114115
first-class CLR language - it does not produce managed code (IL)
115-
from Python code. Rather, it is an integration of the C Python
116-
engine with the .NET runtime. This approach allows you to use use
116+
from Python code. Rather, it is an integration of the CPython
117+
engine with the .NET or Mono runtime. This approach allows you to use use
117118
CLR services and continue to use existing Python code and C-based
118119
extensions while maintaining native execution speeds for Python
119120
code. If you are interested in a pure managed-code implementation
120121
of the Python language, you should check out the <a href="http://www.ironpython.com">IronPython</a>
121122
project, which is in active development. </p>
122-
<p> Python for .NET is currently compatible with Python releases 2.5
123+
<p> Python for .NET is currently compatible with Python releases 2.7, 3.3, 3.4, and 3.5.
123124
and greater. To subscribe to the <a href="http://mail.python.org/mailman/listinfo/pythondotnet">
124125
Python for .NET mailing list </a> or read the <a href="http://mail.python.org/pipermail/pythondotnet/">
125126
online archives </a> of the list, see the <a href="http://mail.python.org/mailman/listinfo/pythondotnet">
126127
mailing list information </a> page. You can also send questions
127-
or comments to me at <a href="mailto:brian.lloyd@revolution.com">brian.lloyd@revolution.com</a>
128+
or comments to me at <a href="mailto:brian.d.lloyd@gmail.com ">brian.d.lloyd@gmail.com</a>
128129
or use the <a href="http://github.com/pythonnet/pythonnet/issues">
129130
Python for .NET issue tracker</a> to report issues. </p>
130-
<p> My <a href="http://brianlloyd.blogspot.com">blog site</a> is
131-
also (sometimes) a good source for more information on Python for
132-
.NET ;) </p>
133131
<ul>
134132
<li>The <a href="./readme.html">README</a> provides a detailed
135133
overview of Python for .NET, as well as some basic usage

0 commit comments

Comments
 (0)