-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Backport bpo-27456: Ensure TCP_NODELAY is set on linux 3.6 #4897
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…on-config.sh (pythonGH-3769) (python#3793) Fix the logic in python-config.sh to avoid attempting to substitute prefix in a variable that might have already been subject to substitution. This e.g. happened if @exec_prefix@ was defined as "${prefix}" (which is the default of the configure script) -- in which case the exec_prefix_build variable was initialized with already-subtituted prefix, and then another round of substitution was performed which might have resulted in duplicate prefix. To avoid that, rename the variables so that the variables matching likely configure names (prefix, exec_prefix) retain their original values and a '_real' suffix is used for the real values of prefix. Furthermore, replace the unnecessary prefix and exec_prefix substitutions with direct prefix_real references since the sed always replaced the whole string anyway by design. (cherry picked from commit 14086cf)
…seed has a bad __abs__() method. (pythonGH-3596) (python#3794) (cherry picked from commit d780b2d)
…onGH-3678) (python#3797) bpo-31536: Avoid wholesale rebuild after `make regen-all`
* init commit, with initial tests for from_param and fields __set__ and __get__, and some additions to from_buffer and from_buffer_copy * added the rest of tests and patches. probably only a first draft. * removed trailing spaces * replace ctype with ctypes in error messages * change back from ctypes instance to ctype instance (cherry picked from commit 1bea762)
pythonGH-3810) Replace "restriction" with "restrictions". (cherry picked from commit 8d59aca)
…) (python#3820) (cherry picked from commit 90f1d98)
…pythonGH-3803) (python#3829) (forgot to remove it in pythonGH-3219) (cherry picked from commit 8b4ff53)
…completed()` (pythonGH-3830) (python#3831) This was possible before. pythonGH-1560 introduced a regression after 3.6.2 got released where only sequences were accepted now. This commit addresses this problem. (cherry picked from commit 574562c)
… a bad unicodedata.normalize(). (pythonGH-3767) (python#3836) (cherry picked from commit 7dc46d8)
…honGH-3821) (python#3837) (cherry picked from commit f4ea642)
…ythonGH-3839) (python#3841) (cherry picked from commit bfebfd8)
…-3842) (python#3843) Passing a widget instead of an flist with a root widget opens the option of creating a browser frame that is only part of a window. Passing a full file name instead of pieces assumed to come from a .py file opens the possibility of browsing python files that do not end in .py. (cherry picked from commit d6bb65f)
pythonGH-3852) (cherry picked from commit e6f62f6)
… shutdown (pythonGH-3673) (python#3856) bpo-31516: current_thread() should not return a dummy thread at shutdown (cherry picked from commit 1023dbb)
(cherry picked from commit efb560e)
…ythonGH-3699) Use prefixed macro names for the `authoraddress` function, add T2A to the font encoding in LaTeX sources to support Cyrillic characters in the PDF documentation, and replace the deprecated `font_size` config option with `pointsize`. (cherry picked from commit da9b4cf)
…completed()` (pythonGH-3830) (python#3831) This was possible before. pythonGH-1560 introduced a regression after 3.6.2 got released where only sequences were accepted now. This commit addresses this problem. (cherry picked from commit 574562c)
(cherry picked from commit efb560e)
…number of underscores (pythonGH-3827) (python#3863) to integer with binary base. (cherry picked from commit 85c0b89)
…nfo(). (pythonGH-3864). (python#3873) (cherry picked from commit 929b40a)
…d split() (pythonGH-3866) (python#3874) when pass a string larger than 2 GiB. Decrease memory requirements for Tcl's bigmem tests. (cherry picked from commit 27c623c)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
https://bugs.python.org/issue27456