Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
PyPy
pypy
Commits
bb0faafec9f9
Commit
0edb197b
authored
Aug 23, 2005
by
Holger Krekel
Browse files
merge the documentation branch back to dist
parent
e6f80b38c206
Changes
41
Hide whitespace changes
Inline
Side-by-side
pypy/doc
umentation
/__init__.py
→
pypy/doc/__init__.py
View file @
bb0faafe
File moved
pypy/doc/_ref.txt
0 → 100644
View file @
bb0faafe
.. _`demo/`: ../../demo
.. _`lib-python/`: ../../lib-python
.. _`annotation/`:
.. _`pypy/annotation`: ../../pypy/annotation
.. _`annotation/binaryop.py`: ../../pypy/annotation/binaryop.py
.. _`doc/`: ../../pypy/doc
.. _`doc/revreport/`: ../../pypy/doc/revreport
.. _`interpreter/`:
.. _`pypy/interpreter`: ../../pypy/interpreter
.. _`pypy/interpreter/argument.py`: ../../pypy/interpreter/argument.py
.. _`pypy/interpreter/function.py`: ../../pypy/interpreter/function.py
.. _`pypy/interpreter/gateway.py`: ../../pypy/interpreter/gateway.py
.. _`pypy/interpreter/generator.py`: ../../pypy/interpreter/generator.py
.. _`pypy/interpreter/mixedmodule.py`: ../../pypy/interpreter/mixedmodule.py
.. _`pypy/interpreter/nestedscope.py`: ../../pypy/interpreter/nestedscope.py
.. _`pypy/interpreter/pyopcode.py`: ../../pypy/interpreter/pyopcode.py
.. _`pypy/interpreter/typedef.py`: ../../pypy/interpreter/typedef.py
.. _`lib/`:
.. _`pypy/lib/`: ../../pypy/lib
.. _`lib/test2/`:
.. _`pypy/lib/test2`: ../../pypy/lib/test2
.. _`module/`:
.. _`pypy/module`: ../../pypy/module
.. _`module/__builtin__/`: ../../pypy/module/__builtin__
.. _`pypy/module/__builtin__/__init__.py`: ../../pypy/module/__builtin__/__init__.py
.. _`module/_sre_pypy/`: ../../pypy/module/_sre_pypy
.. _`module/parser/`: ../../pypy/module/parser
.. _`module/recparser/`: ../../pypy/module/recparser
.. _`module/sys/`: ../../pypy/module/sys
.. _`objspace/`:
.. _`pypy/objspace`: ../../pypy/objspace
.. _`objspace/flow/`: ../../pypy/objspace/flow
.. _`objspace/std/`:
.. _`pypy/objspace/std`: ../../pypy/objspace/std
.. _`objspace/thunk.py`: ../../pypy/objspace/thunk.py
.. _`objspace/trace.py`:
.. _`pypy/objspace/trace.py`: ../../pypy/objspace/trace.py
.. _`rpython/`: ../../pypy/rpython
.. _`rpython/lltype.py`: ../../pypy/rpython/lltype.py
.. _`rpython/rint.py`: ../../pypy/rpython/rint.py
.. _`rpython/rlist.py`: ../../pypy/rpython/rlist.py
.. _`rpython/rmodel.py`: ../../pypy/rpython/rmodel.py
.. _`pypy/test_all.py`: ../../pypy/test_all.py
.. _`tool/`: ../../pypy/tool
.. _`tool/pytest/`: ../../pypy/tool/pytest
.. _`tool/tb_server/`: ../../pypy/tool/tb_server
.. _`translator/`:
.. _`pypy/translator`: ../../pypy/translator
.. _`pypy/translator/annrpython.py`: ../../pypy/translator/annrpython.py
.. _`translator/c/`: ../../pypy/translator/c
.. _`translator/java/`: ../../pypy/translator/java
.. _`translator/llvm2/`: ../../pypy/translator/llvm2
.. _`translator/tool/`: ../../pypy/translator/tool
\ No newline at end of file
pypy/doc
umentation
/architecture.txt
→
pypy/doc/architecture.txt
View file @
bb0faafe
...
...
@@ -8,7 +8,7 @@ PyPy - Architecture Overview
This document gives an overview of the goals and architecture of PyPy.
See also `getting started`_ for a practical introduction.
.. _`getting started`: getting
_
started.html
.. _`getting started`: getting
-
started.html
Mission statement
...
...
pypy/doc
umentation
/coding-guide.txt
→
pypy/doc/coding-guide.txt
View file @
bb0faafe
...
...
@@ -696,8 +696,6 @@ and encouraged to let their tests run at interpreter level although
This allows us to quickly test our python-coded reimplementations
against CPython.
.. _`pypy/lib/test2`: http://codespeak.net/svn/pypy/dist/pypy/lib/test2
Testing modules in ``pypy/module``
----------------------------------
...
...
pypy/doc/confrest.py
0 → 100644
View file @
bb0faafe
from
py.__.documentation.confrest
import
*
class
PyPyPage
(
Page
):
def
fill
(
self
):
super
(
PyPyPage
,
self
).
fill
()
self
.
menubar
[:]
=
html
.
div
(
html
.
a
(
"news"
,
href
=
"news.html"
,
class_
=
"menu"
),
" "
,
html
.
a
(
"doc"
,
href
=
"index.html"
,
class_
=
"menu"
),
" "
,
html
.
a
(
"contact"
,
href
=
"contact.html"
,
class_
=
"menu"
),
" "
,
html
.
a
(
"getting-started"
,
href
=
"getting-started.html"
,
class_
=
"menu"
),
" "
,
html
.
a
(
"issue"
,
href
=
"https://codespeak.net/issue/pypy-dev/"
,
class_
=
"menu"
),
" "
,
id
=
"menubar"
)
class
Project
(
Project
):
title
=
"PyPy"
stylesheet
=
'style.css'
encoding
=
'latin1'
prefix_title
=
"PyPy"
logo
=
html
.
div
(
html
.
a
(
html
.
img
(
alt
=
"PyPy"
,
id
=
"pyimg"
,
src
=
"http://codespeak.net/pypy/img/py-web1.png"
,
height
=
110
,
width
=
149
)))
Page
=
PyPyPage
pypy/doc
umentation
/conftest.py
→
pypy/doc/conftest.py
View file @
bb0faafe
File moved
pypy/doc
umentation/website
/contact.txt
→
pypy/doc/contact.txt
View file @
bb0faafe
File moved
pypy/doc
umentation
/contributor.txt
→
pypy/doc/contributor.txt
View file @
bb0faafe
File moved
pypy/doc
umentation
/ext-functions-draft.txt
→
pypy/doc/ext-functions-draft.txt
View file @
bb0faafe
File moved
pypy/doc
umentation
/extradoc.txt
→
pypy/doc/extradoc.txt
View file @
bb0faafe
File moved
pypy/doc
umentation
/faq.txt
→
pypy/doc/faq.txt
View file @
bb0faafe
File moved
pypy/doc
umentation
/gc_planning.txt
→
pypy/doc/gc_planning.txt
View file @
bb0faafe
File moved
pypy/doc
umentation
/getting
_
started.txt
→
pypy/doc/getting
-
started.txt
View file @
bb0faafe
File moved
pypy/doc
umentation
/image/translation.sxd
→
pypy/doc/image/translation.sxd
View file @
bb0faafe
File moved
pypy/doc
umentation
/index.txt
→
pypy/doc/index.txt
View file @
bb0faafe
...
...
@@ -36,7 +36,7 @@ recent compliance test runs against PyPy.
.. _`coding guide`: coding-guide.html
.. _`architecture`: architecture.html
.. _`revision report`: http://codespeak.net/pypy/rev/current
.. _`getting started`: getting
_
started.html
.. _`getting started`: getting
-
started.html
.. _`theory`: theory.html
.. _`bytecode interpreter`: interpreter.html
...
...
@@ -53,11 +53,9 @@ Directory explanation/links
============================ ===========================================
`annotation/`_ `type inferencing code`_ for `RPython`_ programs
`doc
umentation/`_
text versions of PyPy
`
documentation
`_ files shown on the website
`doc
/`_
text versions of PyPy
developer
documentation
`documentation/revreport/`_ the source code for the `revision report`_
`documentation/website/`_ text versions of the navigation webpages
`doc/revreport/`_ the source code for the `revision report`_
`interpreter/`_ `bytecode interpreter`_ and related objects (frames, functions, modules,...)
...
...
pypy/doc
umentation
/interpreter.txt
→
pypy/doc/interpreter.txt
View file @
bb0faafe
File moved
pypy/doc
umentation
/misc.txt
→
pypy/doc/misc.txt
View file @
bb0faafe
File moved
pypy/doc
umentation
/navlist
→
pypy/doc/navlist
View file @
bb0faafe
[
'architecture.html',
'getting
_
started.html',
'getting
-
started.html',
'coding-guide.html',
'objspace.html',
'translation.html',
...
...
pypy/doc
umentation/website
/news.txt
→
pypy/doc/news.txt
View file @
bb0faafe
...
...
@@ -7,21 +7,22 @@
nonsense, isn't it? `more...`_
.. _Python: http://www.python.org/doc/current/ref/ref.html
.. _`more...`:
..
/architecture.html#mission-statement
.. _`more...`:
http://codespeak.net/pypy/dist/pypy/doc
/architecture.html#mission-statement
Next
PyPy Sprint in Heidelberg 22nd-29th August 2005
======================================================
Ongoing:
PyPy Sprint in Heidelberg 22nd-29th August 2005
======================================================
====
The
nex
t PyPy sprint
will
take place at the Heidelberg University
The
curren
t PyPy sprint take
s
place at the Heidelberg University
in Germany from 22nd August to 29th August (both days included).
Its main focus is translation of the whole PyPy interpreter
to a low level language and reaching 2.4.1 Python compliancy.
The goal of the sprint is to release a first self-contained PyPy-0.7 version.
To learn more see the `Heidelberg sprint announcement`_ or look at
the list of people_ that are expected to come.
The goal of the sprint is to release a first self-contained
PyPy-0.7 version. To learn more see the `Heidelberg sprint
announcement`_ or look at the list of people_ that are
expected to come.
.. _people: http://codespeak.net/pypy/
index.cgi?
extradoc/sprintinfo/heidelberg-people.html
.. _`Heidelberg sprint announcement`: http://codespeak.net/pypy/
index.cgi?
extradoc/sprintinfo/Heidelberg-sprint.html
.. _people: http://codespeak.net/pypy/extradoc/sprintinfo/heidelberg-people.html
.. _`Heidelberg sprint announcement`: http://codespeak.net/pypy/extradoc/sprintinfo/Heidelberg-sprint.html
PyPy Hildesheim2 finished: first self-contained PyPy run!
...
...
@@ -67,9 +68,9 @@ the LLVM backends and type inference in general.
.. _`pypy-dev`: http://codespeak.net/mailman/listinfo/pypy-dev
.. _EuroPython: http://europython.org
.. _`translation`:
..
/translation.html
.. _`sprint announcement`: EP2005-announcement.html
.. _`list of people coming`: http://codespeak.net/pypy/
index.cgi?
extradoc/sprintinfo/EP2005-people.html
.. _`translation`:
http://codespeak.net/pypy/dist/pypy/doc
/translation.html
.. _`sprint announcement`:
http://codespeak.net/pypy/extradoc/sprintinfo/
EP2005-announcement.html
.. _`list of people coming`: http://codespeak.net/pypy/extradoc/sprintinfo/EP2005-people.html
First PyPy release!
===================
...
...
@@ -81,6 +82,6 @@ and nice starting points into the PyPy code base. We invite you to head
over to the `getting started`_ document or read more in the
`release announcement`_. *(05/20/2005)*
.. _`release announcement`: http://codespeak.net/pypy/
index.cgi?
doc/release-0.6.html
.. _`getting started`: http://codespeak.net/pypy/
index.cgi?
getting-started
.. _`release announcement`: http://codespeak.net/pypy/
dist/pypy/
doc/release-0.6.html
.. _`getting started`: http://codespeak.net/pypy/
pypy/dist/pypy/doc/
getting-started
pypy/doc
umentation
/newstructure
→
pypy/doc/newstructure
View file @
bb0faafe
File moved
Prev
1
2
3
Next
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