Skip to content

Commit

Permalink
Add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed May 29, 2024
1 parent 305e36a commit 7534c57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Coming in build 307, as yet unreleased
* Use byte-string (`b""`) for constant bytes values instead of superfluous `.encode` calls (#2046, @Avasam)
* Cleaned up unused imports (#1986, #2051, #1990, #2124, #2126, @Avasam)
* Removed duplicated declarations, constants and definitions (#2050 , #1950, #1990, @Avasam)
* General speed and size improvements due to all the removed code. (#2046, #1986, #2050, #1950, #2085, #2087, #2051, #1990, #2106, #2127, #2124, #2126, #2177, #2218, #2202, #2205, #2217)
* General speed and size improvements due to all the removed code. (#2046, #1986, #2050, #1950, #2085, #2087, #2051, #1990, #2106, #2127, #2124, #2126, #2177, #2218, #2202, #2205, #2217, #2272)

### adodbapi
* Remove references to outdated IronPython (#2049, @Avasam)
Expand Down
4 changes: 2 additions & 2 deletions com/win32com/client/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def MakeDispatchFuncMethod(self, entry, name, bMakeClass=1):
if len(bad_params) == 0 and len(retDesc) == 2 and retDesc[1] == 0:
rd = retDesc[0]
if rd in NoTranslateMap:
s = "{}\treturn self._oleobj_.InvokeTypes(%d, LCID, {}, {}, {}{})".format(
s = "{}\treturn self._oleobj_.InvokeTypes({}, LCID, {}, {}, {}{})".format(
linePrefix,
id,
fdesc[4],
Expand Down Expand Up @@ -444,7 +444,7 @@ def MakeDispatchFuncMethod(self, entry, name, bMakeClass=1):
s = f"{linePrefix}\t# Result is a Unicode object\n"
s = (
s
+ "{}\treturn self._oleobj_.InvokeTypes(%d, LCID, {}, {}, {!r}{})"
+ "{}\treturn self._oleobj_.InvokeTypes({}, LCID, {}, {}, {!r}{})"
% (
linePrefix,
id,
Expand Down

0 comments on commit 7534c57

Please sign in to comment.