Make TypeError messages contain type name instead of a repr.#191
Merged
Conversation
The failure depends on the type, not on the value of an object. This combines CPython's issues 26623 and 24641.
etrepum
reviewed
Nov 20, 2017
etrepum
left a comment
Member
There was a problem hiding this comment.
Tentatively good but it would be nice to have some test coverage
This was referenced Nov 24, 2017
This was referenced Nov 24, 2017
clrpackages
pushed a commit
to clearlinux-pkgs/simplejson
that referenced
this pull request
Nov 27, 2017
…on 3.13.2
Bob Ippolito (21):
Add Python 3.6.3 to appveyor
Merge pull request #188 from simplejson/bpo-31505
added editorconfig
update artifacts.py to avoid none-any wheels
v3.12.1
Workarounds for NamedTemporaryFile issues with Windows for tool tests
Update version, add *.pyd to gitignore
update appveyor config
Merge pull request #191 from simplejson/type-error-messages
update CHANGES
Ensure that encoding text subtypes is consistent with or without speedups. Fixes #185
Fix string encoding for Python 2
fix appveyor.yml
fix artifact matching
build sdist from travis
also upload tarball
Merge pull request #194 from simplejson/speedups-compile-error-2.7
fail build in CI if speedups do not build correctly
v3.13.1
maybe fix windows 2.x build
v3.13.2
Serhiy Storchaka (7):
bpo-31505: Fix an assertion failure in json, in case _json.make_encoder() received a bad encoder() argument. Original patch by Oren Milman.
Fix a test.
Fix a reference leak when sort keys. (#186)
bpo-31095: fix potential crash during GC (#187)
Make TypeError messages contain type name instead of a repr. The failure depends on the type, not on the value of an object.
Add tests.
Fix a compile error on 2.x. Closes #193.
Version 3.13.2 released 2017-11-24
* Fix additional Python 2.x compilation issue on Windows
Version 3.13.1 released 2017-11-24
* Improve CI to catch speedups build regressions
* Fix speedups build regression in Python 2.x
simplejson/simplejson#193
Version 3.13.0 released 2017-11-23
* Workarounds for NamedTemporaryFile issues with Windows for tool tests
* Make TypeError messages contain type name instead of a repr.
simplejson/simplejson#191
(NEWS truncated at 15 lines)
This was referenced Dec 31, 2017
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
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.
The failure depends on the type, not on the value of an object.
This combines CPython's issues 26623 and 24641.