Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ A Migration Python script might be needed or looked into.
- My Presentation and Virtual Confrence: https://www.youtube.com/watch?v=Cbb6trkKWXY

## Contributing
I put my heart and soul into this library ever since it began and any help is apperciated and means a lot to me, I have other things I wish to explore so every little bit helps
I put my heart and soul into this library ever since it began and any help is appreciated and means a lot to me, I have other things I wish to explore so every little bit helps

### How Can I contribute?
- I make and branch and make edits and then I do a pull requests before I just step in and add something new.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_aiomultiprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class _Test_Multiprocessing:
"""Used for Testing aiomultiprocessing"""

@unittest.skip(
"aiomultiprocess has an import bug releated to having a tests module"
"aiomultiprocess has an import bug related to having a tests module"
)
def test_process_spawning(self):
# See:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ async def coro():
self.assertFalse(isinstance(task, MyTask))
self.loop.run_until_complete(task)

# NOTE: one of my plans invovles migrating to pytest in 2026...
# NOTE: one of my plans involves migrating to pytest in 2026...
@unittest.skip("Fixing this is on my todo list for 0.2.0")
def test_set_task_name(self):
self.loop._process_events = mock.Mock()
Expand Down
2 changes: 1 addition & 1 deletion winloop/handles/process.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ cdef class UVProcessTransport(UVProcess):
# When a stdio is in a gui-like state without a console.
# using a standard redirect is not a good idea. This at least
# is a better workaround that is a bit cleaner than doing what the
# python standard libary subprocess does with the _get_handles function
# python standard library subprocess does with the _get_handles function
# on windows. SEE: https://github.com/Vizonex/Winloop/issues/126

io[0] = self._file_devnull()
Expand Down
2 changes: 1 addition & 1 deletion winloop/includes/compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ void PyOS_AfterFork_Child() {
/* For some strange reason this structure does not want to show up
* when compiling in debug mode on 3.13+ on windows so lets redefine it as a macro */

/* IDK How big to make this so will just leave it at 1 incase somehow accidently exposed */
/* IDK How big to make this so will just leave it at 1 in case somehow accidentally exposed */
#ifndef __Pyx_MonitoringEventTypes_CyGen_count
#define __Pyx_MonitoringEventTypes_CyGen_count 1
#endif /* __Pyx_MonitoringEventTypes_CyGen_count */
Expand Down