@@ -234,37 +234,37 @@ error like all other unknown variables.
234234 - Python equivalent
235235 - Sample values
236236 * - ``os_name ``
237- - `` os.name ` `
237+ - :py:data: ` os.name `
238238 - ``posix ``, ``java ``
239239 * - ``sys_platform ``
240- - `` sys.platform ` `
240+ - :py:data: ` sys.platform `
241241 - ``linux ``, ``linux2 ``, ``darwin ``, ``java1.8.0_51 `` (note that "linux"
242242 is from Python3 and "linux2" from Python2)
243243 * - ``platform_machine ``
244- - `` platform.machine() ` `
244+ - :py:func: ` platform.machine() `
245245 - ``x86_64 ``
246246 * - ``platform_python_implementation ``
247- - `` platform.python_implementation() ` `
247+ - :py:func: ` platform.python_implementation() `
248248 - ``CPython ``, ``Jython ``
249249 * - ``platform_release ``
250- - `` platform.release() ` `
250+ - :py:func: ` platform.release() `
251251 - ``3.14.1-x86_64-linode39 ``, ``14.5.0 ``, ``1.8.0_51 ``
252252 * - ``platform_system ``
253- - `` platform.system() ` `
253+ - :py:func: ` platform.system() `
254254 - ``Linux ``, ``Windows ``, ``Java ``
255255 * - ``platform_version ``
256- - `` platform.version() ` `
256+ - :py:func: ` platform.version() `
257257 - ``#1 SMP Fri Apr 25 13:07:35 EDT 2014 ``
258258 ``Java HotSpot(TM) 64-Bit Server VM, 25.51-b03, Oracle Corporation ``
259259 ``Darwin Kernel Version 14.5.0: Wed Jul 29 02:18:53 PDT 2015; root:xnu-2782.40.9~2/RELEASE_X86_64 ``
260260 * - ``python_version ``
261261 - ``'.'.join(platform.python_version_tuple()[:2]) ``
262262 - ``3.4 ``, ``2.7 ``
263263 * - ``python_full_version ``
264- - `` platform.python_version() ` `
264+ - :py:func: ` platform.python_version() `
265265 - ``3.4.0 ``, ``3.5.0b1 ``
266266 * - ``implementation_name ``
267- - `` sys.implementation.name ` `
267+ - :py:data: ` sys.implementation.name <sys.implementation> `
268268 - ``cpython ``
269269 * - ``implementation_version ``
270270 - see definition below
@@ -275,7 +275,7 @@ error like all other unknown variables.
275275 - ``test ``
276276
277277The ``implementation_version `` marker variable is derived from
278- `` sys.implementation.version ` `:
278+ :py:data: ` sys.implementation.version <sys.implementation> `:
279279
280280.. code-block :: python
281281
0 commit comments