msg305249 - (view) |
Author: Brian Kuhl (Brian Kuhl) * |
Date: 2017-10-30 19:56 |
With the trend to use REST APIs between the cloud and the IoT there is increasing interest in Python on embedded devices. Cloud developer’s typical release a reference REST implementation of JSON and/or Python on Linux and leave it to the device developer to adapt it to their platform. While many devices use eLinux, others with IP and/or hard real-time constraints need a commercial RTOS platform.
Currently the automake configure explicitly prevents configuration of VxWorks as a build target.
I'll provide a pull request referencing this issue with the required changes.
|
msg305511 - (view) |
Author: Terry J. Reedy (terry.reedy) * |
Date: 2017-11-03 21:01 |
The following might be relevant to this issue:
https://www.python.org/dev/peps/pep-0011/#supporting-platforms
|
msg305657 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2017-11-06 16:55 |
To support a new platform, you need a developer who can support this platform next years, a working buildbot, etc. You can start a discussion on python-dev to get a first feedback.
Without a strong support, this issue should be fixed a REJECTED and a patch should be maintainted out of the tree. Since the PR seems small, it should be "easy" to keep a fork of CPython up to date.
|
msg305690 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2017-11-06 23:39 |
FYI I already started a thread on python-dev:
[Python-Dev] Partial support of a platform
https://mail.python.org/pipermail/python-dev/2017-November/150238.html
|
msg305869 - (view) |
Author: Brian Kuhl (Brian Kuhl) * |
Date: 2017-11-08 16:00 |
I'm quite happy to take on maintainer role for Python on VxWorks, so I think we can get that one solved.
Enabling a build bot for cross compile of propitiatory OS presents a number of legal licensing issues that outside my control. And I'll discuss it internally at Wind River. However I think it is in line with where our customers want us to go, so well worth pursuing.
I'll keep this pull request active and up to date, till the broader issues you have raised can be resolved.
I'll post a proposal on the mailing list after I consulted within Wind River.
Many thanks for your interest and support.
|
msg305877 - (view) |
Author: R. David Murray (r.david.murray) * |
Date: 2017-11-08 16:23 |
I'm not sure what licensing issues you are talking about, but setting up a buildbot shouldn't normally run into any. As long as you have a license to the run the OS, the fact that you are using it to receive jobs from our build master and run them shouldn't be a problem. You can keep the whole thing behind a firewall in a DMZ: the slave makes outbound connections to pick up its jobs.
On the other hand, the logistics of setting up a cross compile buildbot might be a bit complex, I've never done that. You might need specific support from our build master. In any case, the python-buldbots mailing list is the place to talk if you want to/can pursue this.
|
msg315365 - (view) |
Author: Ned Deily (ned.deily) * |
Date: 2018-04-16 19:40 |
As I commented on the PR, I think this PR should not be merged until and if there is a consensus that this support belongs in the standard cpython repo and there is an agreed-upon plan how this platform would be supported on going. I think it needs an approved PEP. We've allowed ourselves in the past to do a long-term disservice to our downstream users by merging in support for platforms that we were not equipped to support. In any case, it would need to wait for 3.8.
|
msg336680 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-02-26 14:53 |
Kuhl, Brian started a new discussion: [Python-Dev] VxWorks and cpython?
https://mail.python.org/pipermail/python-dev/2019-January/156024.html
PR 11968 and PR 12051 are small and reasonable.
IMHO we can take decisions on a case by case basic. But WindRiver plans to provide a buildbot and is already showing their will to propose PRs, so it seems like things are moving on.
|
msg336742 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-02-27 11:09 |
New changeset 32f5fdd7f4213743fe2f6eedd0fe2108f3157021 by Victor Stinner (pxinwr) in branch 'master':
bpo-31904: Add cross-build support for VxWorks RTOS (GH-11968)
https://github.com/python/cpython/commit/32f5fdd7f4213743fe2f6eedd0fe2108f3157021
|
msg337083 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-03-04 09:02 |
New changeset f4b0a1c0da80318e0a4f4c70d2722f01ce3512dd by Victor Stinner (pxinwr) in branch 'master':
bpo-31904: Add encoding support for VxWorks RTOS (GH-12051)
https://github.com/python/cpython/commit/f4b0a1c0da80318e0a4f4c70d2722f01ce3512dd
|
msg337867 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-03-13 17:18 |
New changeset 8b5bdda5b4c418c4a858f183763d0a497170977c by Victor Stinner (pxinwr) in branch 'master':
bpo-31904: Adapt the _signal module to VxWorks RTOS (GH-12304)
https://github.com/python/cpython/commit/8b5bdda5b4c418c4a858f183763d0a497170977c
|
msg337909 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-03-14 10:28 |
Please stop to send new PRs which depend on other PRs which are not merged yet, it becomes too hard to follow :-( Let's focus on first PRs.
|
msg338964 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-03-27 15:11 |
New changeset f4333d0479d6974d142e858522e95cbf8381f016 by Victor Stinner (hliu0) in branch 'master':
bpo-31904: Fix test_utf8_mode on VxWorks (GH-12428)
https://github.com/python/cpython/commit/f4333d0479d6974d142e858522e95cbf8381f016
|
msg339059 - (view) |
Author: Christian Heimes (christian.heimes) * |
Date: 2019-03-28 16:47 |
I'm against implementing crypt on top of OpenSSL's DES_crypt. Please don't support the module at all instead of just supporting a completely broken implementation.
|
msg339898 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-04-10 23:36 |
Please stop adding more pull requests, I cannot review too many at the same time. I would prefer to have a limit of 4 open PRs. I don't propose to close existing ones. Just stop to add more :-)
|
msg340244 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-04-15 09:02 |
New changeset 236d0b75c41449a266201c683b4b0d6acdee02df by Victor Stinner (pxinwr) in branch 'master':
bpo-31904: Don't build the _crypt extension on VxWorks (GH-12833)
https://github.com/python/cpython/commit/236d0b75c41449a266201c683b4b0d6acdee02df
|
msg340245 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-04-15 09:06 |
New changeset f1464f4d2ecf9b809ff768c523c5eea1abd31c55 by Victor Stinner (pxinwr) in branch 'master':
bpo-31904: Port the time module on VxWorks (GH-12305)
https://github.com/python/cpython/commit/f1464f4d2ecf9b809ff768c523c5eea1abd31c55
|
msg340310 - (view) |
Author: Peixing Xin (pxinwr) * |
Date: 2019-04-16 03:37 |
@vstinner I've informed WRS team of temporarily not creating new PRs in until less than 4 PRs are in the open state. Next we will keep open PRs less than 4. Thanks for your effort on them.
|
msg340385 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-04-17 09:46 |
New changeset 36c41bc2017921321dbb19557f616a6bb7572c83 by Victor Stinner (Lihua Zhao) in branch 'master':
bpo-31904: Fix test_tabnanny on VxWorks (GH-12646)
https://github.com/python/cpython/commit/36c41bc2017921321dbb19557f616a6bb7572c83
|
msg340406 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-04-17 15:33 |
New changeset 2954550818e5c23a082e6279eb326168230ebf04 by Victor Stinner (Lihua Zhao) in branch 'master':
bpo-31904: Port test_cmd_line to VxWorks (#12648)
https://github.com/python/cpython/commit/2954550818e5c23a082e6279eb326168230ebf04
|
msg340409 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-04-17 15:41 |
New changeset 693c104ae74feea11f0b51176dc91ecd153230c0 by Victor Stinner (Lihua Zhao) in branch 'master':
bpo-31904: Port test_resource to VxWorks (GH-12719)
https://github.com/python/cpython/commit/693c104ae74feea11f0b51176dc91ecd153230c0
|
msg343004 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-05-21 10:46 |
New changeset f2d7ac7e5bd821e29e0fcb78a760a282059ae000 by Victor Stinner (pxinwr) in branch 'master':
bpo-31904: Add posix module support for VxWorks (GH-12118)
https://github.com/python/cpython/commit/f2d7ac7e5bd821e29e0fcb78a760a282059ae000
|
msg343008 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2019-05-21 10:50 |
Please update PR 12670: see my comment there.
|
msg366073 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-04-09 15:46 |
New changeset 5cd28030092eaa8eb9223afd733974fd2afc8e2c by pxinwr in branch 'master':
bpo-31904: Fix test_c_locale_coercion encodings for VxWorks RTOS (GH-19448)
https://github.com/python/cpython/commit/5cd28030092eaa8eb9223afd733974fd2afc8e2c
|
msg374361 - (view) |
Author: Inada Naoki (methane) * |
Date: 2020-07-27 06:17 |
New changeset 855e68855eeb06f8f0319b3366d3a012c2ff2041 by pxinwr in branch 'master':
bpo-31904: Fix test_ftplib failures for VxWorks RTOS (GH-19447)
https://github.com/python/cpython/commit/855e68855eeb06f8f0319b3366d3a012c2ff2041
|
msg374460 - (view) |
Author: Jim Jewett (Jim.Jewett) * |
Date: 2020-07-28 04:37 |
Is it safe to say that there is an now intent to support VxWorks within the main tree, with Wind River agreeing to be primary support?
And this ticket has become a tracking ticket for the status on getting it there, small PR by small PR plus buildbot?
|
msg374469 - (view) |
Author: Peixing Xin (pxinwr) * |
Date: 2020-07-28 06:16 |
@Jim.Jewett Yes. We have got most modules passed testing locally. Now we want to get the patches upstream. So VxWorks platform can be officially supported.
|
msg382014 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-11-28 20:21 |
New changeset aa1b8a168d8b8dc1dfc426364b7b664501302958 by pxinwr in branch 'master':
bpo-31904: Fix test_os.test_getcwd_long_path() failure for VxWorks (GH-20256)
https://github.com/python/cpython/commit/aa1b8a168d8b8dc1dfc426364b7b664501302958
|
msg382020 - (view) |
Author: miss-islington (miss-islington) |
Date: 2020-11-28 22:04 |
New changeset a86a274b7224a5069f82c2d2cdd1f499d9c8dc22 by pxinwr in branch 'master':
bpo-31904: add shell requirement for test_pipes (GH-23489)
https://github.com/python/cpython/commit/a86a274b7224a5069f82c2d2cdd1f499d9c8dc22
|
msg382021 - (view) |
Author: miss-islington (miss-islington) |
Date: 2020-11-28 22:06 |
New changeset 6a273fdc2a36f52fb70359149eff014f1b6b08d4 by pxinwr in branch 'master':
bpo-31904: skip some tests related to fifo on VxWorks (GH-23473)
https://github.com/python/cpython/commit/6a273fdc2a36f52fb70359149eff014f1b6b08d4
|
msg382023 - (view) |
Author: miss-islington (miss-islington) |
Date: 2020-11-28 22:14 |
New changeset 00a6568ba37f0d815289776a51af46d0eac27384 by pxinwr in branch 'master':
bpo-31904: remove libnet dependency from detect_socket() for VxWorks (GH-23394)
https://github.com/python/cpython/commit/00a6568ba37f0d815289776a51af46d0eac27384
|
msg382198 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-11-30 21:48 |
New changeset 1244c816d7cdfa8a26d1671cab67122a8c5271a7 by pxinwr in branch 'master':
bpo-31904: Support signal module on VxWorks (GH-23391)
https://github.com/python/cpython/commit/1244c816d7cdfa8a26d1671cab67122a8c5271a7
|
msg382218 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-12-01 08:20 |
New changeset b2d0c66e881301ed8908da3cb41bbf253c449b0c by pxinwr in branch 'master':
bpo-31904: Fix fifo test cases for VxWorks (GH-20254)
https://github.com/python/cpython/commit/b2d0c66e881301ed8908da3cb41bbf253c449b0c
|
msg382276 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-12-01 20:35 |
New changeset e483d281bd55be0beee3e62d18e0719175bde671 by pxinwr in branch 'master':
bpo-31904: Fix test_netrc for VxWorks RTOS (GH-21675)
https://github.com/python/cpython/commit/e483d281bd55be0beee3e62d18e0719175bde671
|
msg382525 - (view) |
Author: Gregory P. Smith (gregory.p.smith) * |
Date: 2020-12-04 20:19 |
New changeset 8d4f57dbd10846ffb4881b6509a511be0ab3b913 by pxinwr in branch 'master':
bpo-31904: fix test_doctest.py failures for VxWorks (GH-23419)
https://github.com/python/cpython/commit/8d4f57dbd10846ffb4881b6509a511be0ab3b913
|
msg382793 - (view) |
Author: dimitri.wei (wlf100220) |
Date: 2020-12-09 13:51 |
test comment
|
msg382807 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-12-09 21:47 |
New changeset d5dcb653176387b72c8630f1a5464571f538a639 by pxinwr in branch 'master':
bpo-31904: Define THREAD_STACK_SIZE for VxWorks (GH-23718)
https://github.com/python/cpython/commit/d5dcb653176387b72c8630f1a5464571f538a639
|
msg383009 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-12-14 22:14 |
New changeset c117426bf8e7dd7a25e7d15bfbc88253b6ed42de by pxinwr in branch 'master':
bpo-31904: Enable libpython3.so shared library for VxWorks (GH-23741)
https://github.com/python/cpython/commit/c117426bf8e7dd7a25e7d15bfbc88253b6ed42de
|
msg383096 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-12-15 21:20 |
New changeset e1e3c2dac3da8a179f57bd3e3309ab65385bcc8a by pxinwr in branch 'master':
bpo-31904: Disable os.popen and popen test cases on VxWorks (GH-21687)
https://github.com/python/cpython/commit/e1e3c2dac3da8a179f57bd3e3309ab65385bcc8a
|
msg383097 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-12-15 21:22 |
New changeset 9a0dea6137a9fe295c8b03aaa08a74c8572ecc4e by pxinwr in branch 'master':
bpo-31904: Skip some tests of changing owner in _test_all_chown_common() on VxWorks (GH-23716)
https://github.com/python/cpython/commit/9a0dea6137a9fe295c8b03aaa08a74c8572ecc4e
|
msg383098 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-12-15 21:24 |
New changeset b230409f21f5e5b42de6ec10147cd95ae3bdd095 by pxinwr in branch 'master':
bpo-31904: Skip os.path.expanduser() tests on VxWorks (GH-23776)
https://github.com/python/cpython/commit/b230409f21f5e5b42de6ec10147cd95ae3bdd095
|
msg383226 - (view) |
Author: Andrew Svetlov (asvetlov) * |
Date: 2020-12-17 10:05 |
New changeset ba760f3710eccdfae2b680a5f94fe0160ddb1536 by pxinwr in branch 'master':
bpo-31904: Skip some asyncio tests on VxWorks (#23815)
https://github.com/python/cpython/commit/ba760f3710eccdfae2b680a5f94fe0160ddb1536
|
msg383259 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-12-17 19:22 |
New changeset 75dabfe7a8324a16687959cc401deb72b104a575 by pxinwr in branch 'master':
bpo-31904: posixpath.expanduser() handles None user home on VxWorks (GH-23530)
https://github.com/python/cpython/commit/75dabfe7a8324a16687959cc401deb72b104a575
|
msg383467 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2020-12-20 22:28 |
New changeset ab74c014ae514fde7487542ec96ef45235aa86b0 by pxinwr in branch 'master':
bpo-31904: Fix site and sysconfig modules for VxWorks RTOS (GH-21821)
https://github.com/python/cpython/commit/ab74c014ae514fde7487542ec96ef45235aa86b0
|
msg385461 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2021-01-22 00:55 |
New changeset 5e45f1c8e7bc5f0ab8feba88b9b6e47066203a5c by pxinwr in branch 'master':
bpo-31904: setup.py: fix cross-compilation on VxWorks (GH-24191)
https://github.com/python/cpython/commit/5e45f1c8e7bc5f0ab8feba88b9b6e47066203a5c
|
msg393247 - (view) |
Author: miss-islington (miss-islington) |
Date: 2021-05-08 09:09 |
New changeset 6e7fe1901631dc730abc02d1f546a99fd6b6fe83 by Miss Islington (bot) in branch '3.10':
[3.10] bpo-31904: Correct error string in test_file_not_exists() for VxWorks (GH-25965) (GH-25983)
https://github.com/python/cpython/commit/6e7fe1901631dc730abc02d1f546a99fd6b6fe83
|
|
Date |
User |
Action |
Args |
2022-04-11 14:58:53 | admin | set | github: 76085 |
2021-05-08 11:20:17 | Alex.Willmer | set | nosy:
- Alex.Willmer
|
2021-05-08 09:09:32 | miss-islington | set | messages:
+ msg393247 |
2021-05-08 08:03:49 | miss-islington | set | pull_requests:
+ pull_request24635 |
2021-05-07 08:26:12 | pxinwr | set | pull_requests:
+ pull_request24622 |
2021-01-22 00:55:56 | vstinner | set | messages:
+ msg385461 |
2021-01-11 15:24:14 | pxinwr | set | pull_requests:
+ pull_request23018 |
2020-12-24 07:26:16 | pxinwr | set | pull_requests:
+ pull_request22771 |
2020-12-22 10:13:09 | pxinwr | set | pull_requests:
+ pull_request22746 |
2020-12-20 22:28:12 | vstinner | set | messages:
+ msg383467 |
2020-12-17 19:22:38 | vstinner | set | messages:
+ msg383259 |
2020-12-17 10:05:01 | asvetlov | set | nosy:
+ asvetlov messages:
+ msg383226
|
2020-12-17 07:54:56 | pxinwr | set | pull_requests:
+ pull_request22676 |
2020-12-15 21:24:11 | vstinner | set | messages:
+ msg383098 |
2020-12-15 21:22:06 | vstinner | set | messages:
+ msg383097 |
2020-12-15 21:20:26 | vstinner | set | messages:
+ msg383096 |
2020-12-15 08:09:48 | methane | set | nosy:
- methane
|
2020-12-15 07:55:31 | pxinwr | set | pull_requests:
+ pull_request22632 |
2020-12-15 05:03:53 | wlf100220 | set | nosy:
- wlf100220
|
2020-12-14 22:14:51 | vstinner | set | messages:
+ msg383009 |
2020-12-11 11:13:00 | pxinwr | set | pull_requests:
+ pull_request22599 |
2020-12-09 21:47:36 | vstinner | set | messages:
+ msg382807 |
2020-12-09 13:51:54 | wlf100220 | set | nosy:
+ wlf100220 messages:
+ msg382793 components:
+ Build, - Cross-Build
|
2020-12-09 11:25:03 | pxinwr | set | pull_requests:
+ pull_request22579 |
2020-12-09 07:29:08 | pxinwr | set | pull_requests:
+ pull_request22578 |
2020-12-08 23:24:37 | vstinner | link | issue41442 superseder |
2020-12-04 20:19:40 | gregory.p.smith | set | nosy:
+ gregory.p.smith messages:
+ msg382525
|
2020-12-01 20:35:03 | vstinner | set | messages:
+ msg382276 |
2020-12-01 08:20:57 | vstinner | set | messages:
+ msg382218 |
2020-11-30 21:48:43 | vstinner | set | messages:
+ msg382198 |
2020-11-28 22:14:33 | miss-islington | set | messages:
+ msg382023 |
2020-11-28 22:06:39 | miss-islington | set | messages:
+ msg382021 |
2020-11-28 22:04:58 | miss-islington | set | nosy:
+ miss-islington messages:
+ msg382020
|
2020-11-28 20:21:42 | vstinner | set | nosy:
+ vstinner messages:
+ msg382014
|
2020-11-27 10:18:47 | pxinwr | set | pull_requests:
+ pull_request22412 |
2020-11-26 03:21:18 | pxinwr | set | pull_requests:
+ pull_request22403 |
2020-11-25 09:06:38 | pxinwr | set | pull_requests:
+ pull_request22394 |
2020-11-24 09:28:27 | pxinwr | set | pull_requests:
+ pull_request22377 |
2020-11-24 08:33:54 | pxinwr | set | pull_requests:
+ pull_request22375 |
2020-11-23 06:09:49 | pxinwr | set | pull_requests:
+ pull_request22363 |
2020-11-20 07:20:40 | pxinwr | set | pull_requests:
+ pull_request22312 |
2020-11-19 09:19:51 | pxinwr | set | pull_requests:
+ pull_request22286 |
2020-11-19 08:44:27 | pxinwr | set | pull_requests:
+ pull_request22283 |
2020-08-11 10:01:11 | pxinwr | set | pull_requests:
+ pull_request20950 |
2020-08-04 16:04:28 | vstinner | set | nosy:
- vstinner
|
2020-07-29 05:39:59 | pxinwr | set | pull_requests:
+ pull_request20820 |
2020-07-28 06:16:51 | pxinwr | set | messages:
+ msg374469 |
2020-07-28 04:37:06 | Jim.Jewett | set | nosy:
+ Jim.Jewett messages:
+ msg374460
|
2020-07-27 06:17:50 | methane | set | nosy:
+ methane messages:
+ msg374361
|
2020-05-20 09:44:46 | ned.deily | set | nosy:
- ned.deily
versions:
+ Python 3.10, - Python 3.8 |
2020-05-20 09:36:32 | pxinwr | set | pull_requests:
+ pull_request19541 |
2020-05-20 08:28:10 | pxinwr | set | pull_requests:
+ pull_request19539 |
2020-04-09 15:46:29 | vstinner | set | messages:
+ msg366073 |
2020-04-09 08:38:42 | pxinwr | set | pull_requests:
+ pull_request18803 |
2020-04-09 08:08:48 | pxinwr | set | pull_requests:
+ pull_request18802 |
2019-05-30 08:04:35 | lzhao | set | pull_requests:
- pull_request12349 |
2019-05-24 05:58:59 | hliu0 | set | pull_requests:
+ pull_request13449 |
2019-05-22 07:28:49 | hliu0 | set | pull_requests:
+ pull_request13402 |
2019-05-21 10:50:53 | vstinner | set | messages:
+ msg343008 |
2019-05-21 10:46:40 | vstinner | set | messages:
+ msg343004 |
2019-04-17 15:41:37 | vstinner | set | messages:
+ msg340409 |
2019-04-17 15:33:43 | vstinner | set | messages:
+ msg340406 |
2019-04-17 09:46:54 | vstinner | set | messages:
+ msg340385 |
2019-04-16 03:37:50 | pxinwr | set | messages:
+ msg340310 |
2019-04-16 03:33:13 | pxinwr | set | nosy:
+ pxinwr
|
2019-04-15 09:06:27 | vstinner | set | messages:
+ msg340245 |
2019-04-15 09:02:34 | vstinner | set | messages:
+ msg340244 |
2019-04-15 07:57:29 | pxinwr | set | pull_requests:
+ pull_request12758 |
2019-04-10 23:36:47 | vstinner | set | messages:
+ msg339898 |
2019-04-08 01:29:37 | lzhao | set | pull_requests:
+ pull_request12645 |
2019-04-03 02:33:56 | ysun1 | set | pull_requests:
+ pull_request12598 |
2019-04-01 09:48:44 | lzhao | set | pull_requests:
+ pull_request12580 |
2019-04-01 08:12:25 | lzhao | set | pull_requests:
+ pull_request12578 |
2019-03-28 16:47:52 | christian.heimes | set | nosy:
+ christian.heimes messages:
+ msg339059
|
2019-03-27 15:11:22 | vstinner | set | messages:
+ msg338964 |
2019-03-19 09:25:00 | hliu0 | set | pull_requests:
+ pull_request12382 |
2019-03-18 06:33:02 | lzhao | set | pull_requests:
+ pull_request12349 |
2019-03-14 10:28:02 | vstinner | set | messages:
+ msg337909 |
2019-03-14 07:55:27 | pxinwr | set | pull_requests:
+ pull_request12295 |
2019-03-14 07:42:03 | ysun1 | set | pull_requests:
+ pull_request12293 |
2019-03-13 19:01:26 | terry.reedy | set | nosy:
- terry.reedy
|
2019-03-13 17:18:28 | vstinner | set | messages:
+ msg337867 |
2019-03-13 09:43:53 | pxinwr | set | pull_requests:
+ pull_request12281 |
2019-03-13 07:26:37 | pxinwr | set | pull_requests:
+ pull_request12280 |
2019-03-04 09:02:31 | vstinner | set | messages:
+ msg337083 |
2019-03-04 08:45:09 | pxinwr | set | pull_requests:
+ pull_request12155 |
2019-03-02 16:59:16 | izbyshev | set | nosy:
+ izbyshev
|
2019-03-01 10:07:22 | pxinwr | set | pull_requests:
+ pull_request12123 |
2019-02-27 11:09:35 | vstinner | set | messages:
+ msg336742 |
2019-02-26 14:53:49 | vstinner | set | messages:
+ msg336680 |
2019-02-26 09:58:45 | pxinwr | set | pull_requests:
+ pull_request12077 |
2019-02-21 06:39:38 | pxinwr | set | pull_requests:
+ pull_request11994 |
2019-02-20 03:51:36 | pxinwr | set | pull_requests:
+ pull_request11976 |
2018-04-16 19:40:29 | ned.deily | set | nosy:
+ lukasz.langa, ned.deily
messages:
+ msg315365 versions:
+ Python 3.8, - Python 3.7 |
2017-11-08 16:23:25 | r.david.murray | set | nosy:
+ r.david.murray messages:
+ msg305877
|
2017-11-08 16:00:46 | Brian Kuhl | set | messages:
+ msg305869 |
2017-11-06 23:39:05 | vstinner | set | messages:
+ msg305690 |
2017-11-06 16:55:23 | vstinner | set | nosy:
+ vstinner messages:
+ msg305657
|
2017-11-03 21:01:04 | terry.reedy | set | nosy:
+ terry.reedy messages:
+ msg305511
|
2017-10-31 03:13:38 | Brian Kuhl | set | pull_requests:
+ pull_request4155 |
2017-10-30 20:46:47 | Brian Kuhl | set | keywords:
+ patch stage: patch review pull_requests:
+ pull_request4149 |
2017-10-30 19:56:33 | Brian Kuhl | create | |