Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
67 commits
Select commit Hold shift + click to select a range
c5ff3f5
add support for os fork
Apr 15, 2023
c2dd77d
WIP: add stub functions for registring callbacks
Apr 16, 2023
bd25a54
fill stubs
Apr 16, 2023
2efe9bd
make things functional
Apr 16, 2023
3ee4da8
make args as kwargs for register at fork
Apr 16, 2023
c6da379
change error text as per as cpython
Apr 16, 2023
d51daaf
add skip test for os.fork on windows
Apr 17, 2023
9fc8952
chore! fix clippy errors
Apr 17, 2023
137fd29
skip fork functions in windows
Apr 17, 2023
f98c005
Merge branch 'main' of github.com:itsankitkp/RustPython into add-fork…
Apr 17, 2023
a58e429
skip unsupported function calls
Apr 17, 2023
cb5166f
remove un-needed skip decorators
Apr 17, 2023
ddcae23
Update Lib/test/test_socketserver.py
itsankitkp Apr 17, 2023
63a881c
remove un-needed decorator
Apr 17, 2023
abce797
fix lint
Apr 17, 2023
7aa1311
add todo items
Apr 17, 2023
5779c89
remove un-needed comment
Apr 17, 2023
37b73f3
fix test case getting stuck
Apr 18, 2023
eaa3e63
Update Lib/test/test_httpservers.py
itsankitkp Apr 18, 2023
e041cbd
fix test case getting stuck
itsankitkp Apr 18, 2023
ae634d2
skip failures due to missing module
itsankitkp Apr 19, 2023
e0a2228
Merge branch 'add-fork-in-os' of github.com:itsankitkp/RustPython int…
itsankitkp Apr 19, 2023
f54f715
Update Lib/test/test_threading.py
itsankitkp Apr 20, 2023
e27e9e9
Update Lib/test/test_threading.py
itsankitkp Apr 20, 2023
6199f76
Update Lib/test/test_threading.py
itsankitkp Apr 20, 2023
9ebdf0b
Update Lib/test/test_threading.py
itsankitkp Apr 20, 2023
9c525af
Update Lib/test/test_threading.py
itsankitkp Apr 20, 2023
84fda43
Update Lib/test/test_threading.py
itsankitkp Apr 20, 2023
8918617
Update Lib/test/test_threading.py
itsankitkp Apr 20, 2023
123bc2d
Update Lib/test/test_threading.py
itsankitkp Apr 20, 2023
844365e
Merge branch 'main' of github.com:itsankitkp/RustPython into add-fork…
itsankitkp Apr 22, 2023
d69426b
Merge branch 'main' of github.com:itsankitkp/RustPython into add-fork…
itsankitkp Apr 23, 2023
20f5abf
skip cases which needs _at_fork_reinit support
itsankitkp Apr 23, 2023
3bfe8c8
add type error if arg is not callable
itsankitkp Apr 23, 2023
e2e6844
reverse function calls for before forkers as per as cpython implement…
itsankitkp Apr 23, 2023
e5d9bb5
handle non callable args
itsankitkp Apr 23, 2023
0fd1a9f
skip test cases which has dependencies on Lock._at_fork_reinit
itsankitkp Apr 23, 2023
47f13b2
skip test case
itsankitkp Apr 23, 2023
35f23be
remove un-needed expected failure decorator as test is passing
itsankitkp Apr 23, 2023
e19c8fd
debug test failure
itsankitkp Apr 23, 2023
c79e2fd
increase verbosity
itsankitkp Apr 23, 2023
f237e5e
print more lines for debug
itsankitkp Apr 23, 2023
870ef53
disable assertion failure to check error
itsankitkp Apr 23, 2023
fdaefd0
more debugging
itsankitkp Apr 23, 2023
eb01160
minor change
itsankitkp Apr 23, 2023
669ff59
add logs
itsankitkp Apr 23, 2023
76b89ce
more experimentations to get error
itsankitkp Apr 23, 2023
68a78e4
last shot to find issue
itsankitkp Apr 23, 2023
a854bb6
remove debug logs
itsankitkp Apr 23, 2023
110fc33
skip test_input_no_stdout_fileno for macos
youknowone Apr 23, 2023
0a2c6fd
Add todo item
itsankitkp Apr 23, 2023
af28311
Add todo item
itsankitkp Apr 23, 2023
dc087c3
not to remove it when update to next CPython version
itsankitkp Apr 23, 2023
511a448
add todo item
itsankitkp Apr 23, 2023
e4aacf9
handle optional args for register at fork
itsankitkp Apr 23, 2023
72b53a9
add ignore kwargs
itsankitkp Apr 23, 2023
f8b966d
remove clone
itsankitkp Apr 23, 2023
9963280
chore! add ignorable kwargs
itsankitkp Apr 23, 2023
6cd534b
add cfg to unix only structs
itsankitkp Apr 23, 2023
0b8f237
Update Lib/test/test_pty.py
itsankitkp Apr 24, 2023
a85ac15
Update vm/src/stdlib/os.rs
itsankitkp Apr 24, 2023
68fc959
use cleaner way of param validation and remove take on state
itsankitkp Apr 24, 2023
90b472b
add skip cfg
itsankitkp Apr 24, 2023
7b52282
Update Lib/test/test_os.py
itsankitkp Apr 24, 2023
898e084
Update Lib/test/test_fcntl.py
youknowone Apr 24, 2023
5ab1706
relocate fork to posix
youknowone Apr 24, 2023
0b61077
simplify fork functoins
youknowone Apr 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add todo items
  • Loading branch information
ankit committed Apr 17, 2023
commit 7aa1311fa5b70d6465ce10f818f0e56f437697c8
2 changes: 1 addition & 1 deletion Lib/test/test_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ def test_uuid5(self):

# TODO: RUSTPYTHON
@unittest.expectedFailure
@support.requires_fork()
@support.requires_fork() # TODO: RUSTPYTHON, os.fork is currently only supported on Unix-based systems
Comment thread
fanninpm marked this conversation as resolved.
Outdated
def testIssue8621(self):
Comment thread
fanninpm marked this conversation as resolved.
# On at least some versions of OSX self.uuid.uuid4 generates
# the same sequence of UUIDs in the parent and any
Expand Down